Android onClick事件三種實現方法

查志強發表於2014-07-10

【原文:http://blog.csdn.net/greenappple/article/details/7580958

[java] view plaincopy
  1. import android.app.Activity;  
  2. import android.os.Bundle;  
  3. import android.view.View;  
  4. import android.view.View.OnClickListener;  
  5. import android.widget.Button;  
  6. import android.widget.Toast;  
  7.   
  8. public class HelloActivity extends Activity {  
  9.   
  10.     /** Called when the activity is first created. */  
  11.     @Override  
  12.     public void onCreate(Bundle savedInstanceState) {  
  13.         super.onCreate(savedInstanceState);  
  14.         setContentView(R.layout.main);  
  15.         Button btnMethod01;  
  16.         Button btnMethod02;  
  17.         Button btnMethod03;  
  18.           
  19.         btnMethod01 = (Button)findViewById(R.id.button1);  
  20.         btnMethod02 = (Button)findViewById(R.id.button2);  
  21.         btnMethod03 = (Button)findViewById(R.id.button3);  
  22.           
  23.         //第一種方法:匿名類  
  24.         btnMethod01.setOnClickListener(new Button.OnClickListener(){  
  25.   
  26.             public void onClick(View v){  
  27.                 Toast.makeText(HelloActivity.this,R.string.method01  
  28.                         ,Toast.LENGTH_SHORT).show();  
  29.             }  
  30.               
  31.         });  
  32.           
  33.         //新增監聽事件  
  34.         btnMethod02.setOnClickListener(new button1OnClickListener());  
  35.     }  
  36.     //第二種方法:內部類實現  有兩部 1.寫內部類 2.新增監聽事件  
  37.     private class button1OnClickListener implements OnClickListener{  
  38.         public void onClick(View v){  
  39.             Toast.makeText(HelloActivity.this,R.string.method02,  
  40.                     Toast.LENGTH_SHORT).show();  
  41.         }  
  42.           
  43.     }  
  44.     //第三種方法:用xml方法配置,該名稱要與  main.xml 中button03的   
  45.     //android:onClick="OnClickButton03"的名字一樣  
  46.     public void OnClickButton03(View v){  
  47.         Toast.makeText(HelloActivity.this,R.string.method03  
  48.                 ,Toast.LENGTH_SHORT).show();  
  49.     }  
  50.       
  51. }  

[html] view plaincopy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical">  
  6.     <Button  
  7.         android:id="@+id/button1"  
  8.         android:layout_width="match_parent"  
  9.         android:layout_height="wrap_content"  
  10.         android:text="@string/method01"/>  
  11.     <Button  
  12.         android:id="@+id/button2"  
  13.         android:layout_width="match_parent"  
  14.         android:layout_height="wrap_content"  
  15.         android:text="@string/method02"/>  
  16.   
  17.     <Button  
  18.         android:onClick="OnClickButton03"  
  19.         android:id="@+id/button3"  
  20.         android:layout_width="match_parent"  
  21.         android:layout_height="wrap_content"  
  22.         android:text="@string/method03"/>  
  23.   
  24. </LinearLayout>  

相關文章