Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android編程之點擊按鈕的響應方式小結【3種方式】

Android編程之點擊按鈕的響應方式小結【3種方式】

編輯:關於Android編程

本文實例總結了Android點擊按鈕的響應方式。分享給大家供大家參考,具體如下:

方法一:在布局文件裡直接定義函數名

布局文件 activity_main.xml 裡代碼如下

<Button
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="@string/show_toast"
  android:onClick="showToast">
</Button>

在後台文件 MainActivity.java裡添加方法即可

/**
 * @description 顯示toast提示信息
 * @author zhuyangxing 2013-11-22上午9:26:00
 * @param v
 */
public void showToast(View v){
  Toast.makeText(MainActivity.this, "這裡是提示信息", Toast.LENGTH_SHORT).show();
}

方法二:對按鈕添加事件監聽器

布局文件 activity_main.xml 裡代碼如下

<Button
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="@string/changeToRed"
  android:id="@+id/button2">
</Button>

在後台文件 MainActivity.java裡代碼如下

@SuppressLint("SetJavaScriptEnabled")
@Override
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  Button button2 = (Button) findViewById(R.id.button2);//獲得句柄
  button2.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {
      text.setBackgroundColor(Color.RED);
    }
  });
}

方法三:同樣是監聽器

在後台文件 MainActivity.Java裡代碼如下

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.testevent);
    mText = (TextView) findViewById(R.id.text1);
    mButton1 = (Button) findViewById(R.id.button1);
    mButton1.setOnClickListener(this); // 設置監聽的類
    mButton2 = (Button) findViewById(R.id.button2);
    mButton2.setOnClickListener(this); // 設置監聽的類
}
public void onClick(View v) {
    Log.v(TAG, "onClick()");
    switch(v.getId()){ // 區分不同的控件
      case R.id.button1:
        mText.setBackgroundColor(Color.RED);
        break;
      case R.id.button2:
        mText.setBackgroundColor(Color.GREEN);
        break;
      default:
        Log.v(TAG, "other");
        break;
    }
}

更多關於Android相關內容感興趣的讀者可查看本站專題:《Android布局layout技巧總結》、《Android視圖View技巧總結》、《Android開發入門與進階教程》、《Android調試技巧與常見問題解決方法匯總》、《Android多媒體操作技巧匯總(音頻,視頻,錄音等)》、《Android基本組件用法總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved