本文以一個簡單的實例為大家介紹Android程式設計的入門知識,該案例是屬於較早的實例程序,讀者可以對比學習,全面的了解Android程式的演化,以加深對Android程式設計的理解。程式運行平台為Android SDK 1.5 + Eclipse + ADT,Android跟J2ME最大的差別在於UI的不同,當然Android比J2ME多出很多東西,多出來的是J2ME無法比較的。剛開始做Android開發,很多人都是先寫個簡單的介面,再加點控製程式碼,本文就是這樣。
本文實例所講述的是LinearLayout + Button + EditText + AlertDialog的簡單使用。
Activity以LinearLayout排列,共用到兩個LinearLayout,第一個是用於全窗體,第二個用於存放兩個Button,第二個LinearLayout放在EditText控制項下面。
以下給予main.xml的程式碼:
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width ="fill_parent" android:layout_height="fill_parent" ><EditText android:text="EditText01" android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/edtInput"></EditText><LinearLayout android:id="@+id/LinearLayout01" android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="center"><Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Show" android:id="@+id/btnShow"></Button><Button android:layout_width="wrap_content" android:layout_height= "wrap_content" android:text="Clear" android:id="@+id/btnClear"></Button></LinearLayout></LinearLayout>
main.xml用於Activity的UI設計,目前設計起來的速度,比J2ME上的LWUIT略快(兩者類似,Android提供了GUI設計工具),比WM上的.NET CF略慢(.NETCF 是RAD )。
接下來給出JAVA代碼:
package com.studio.android;import android.app.Activity;import android.app.AlertDialog;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button ;import android.widget.EditText;public class HelloAndroid extends Activity { /** Called when the activity is first created. */ Button btnShow; Button btnClear; EditText edtInput; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ContentViewView(R.layoutmain. btnShow=(Button)findViewById(R.id.btnShow);//控制項與程式碼綁定btnClear=(Button)findViewById(R.id.btnClear);//控制項與程式碼綁定edtInput=(EditText)findViewById(R .id.edtInput);//控制項與程式碼綁定btnShow.setOnClickListener(new ClickListener());//使用點擊事件btnClear.setOnClickListener(new ClickListener());//使用點擊事件} class ClickListener implements OnClickListener { public void onClick(View v) { if(v==btnShow) { new AlertDialog. Builder(HelloAndroid.this) .setIcon(android.R.drawable.ic_dialog_alert) .setTitle("Information") .setMessage(edtInput.getText()) .show(); } else if(v==btnClear) { edtInput.setText("HelloAndroid"); } } }}
剛開始Android的開發,介面設計是J2ME程式設計師的瓶頸之處,不過以後Android的開發工具會越來越智慧化,期待Netbeans 推出更好的ADT出來(Netbeans目前已經有Android插件)。希望本文所述實例能對大家學習Android有一定的幫助。