天天看點

Android入門第一篇

本文來自http://blog.csdn.net/hellogv/

      本文所講到的是LinearLayout + Button + EditText + AlertDialog的簡單使用。

Android入門第一篇

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);  
        setContentView(R.layout.main);  
          
        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");  
            }  
        }  
    }  
}