Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android之如何在XML中添加單擊事件

Android之如何在XML中添加單擊事件

編輯:關於Android編程

如何在XML中添加單擊事件?


例如給TextVeiw添加單擊事件:




android:id=@+id/tv
android:layout_width=fill_parent
android:layout_height=wrap_content
android:background=#ffcc00
android:clickable=true//設置可以點擊,TextView默認是不能點擊的
android:onClick=showMsg//設置點擊的方法名
android:text=設置單擊事件
android:singleLine=true
android:tag=hello />




在Activity中設置單擊方法,方法名要和XML中的一樣


public void showMsg(View view){
//必須寫參數,View是事件源,回調的時候傳入事件源
Toast.makeText(this, tv.getTag().toString(),Toast.LENGTH_LONG).show();


}

 

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