程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 安卓-關於控件的使用 button的定義

安卓-關於控件的使用 button的定義

編輯:編程綜合問答
關於控件的使用 button的定義

Button bind_button = (Button)this.findViewById(R.id.binded);
bind_button = setOnclickListener(mbindLisetener);
bind_button =(Button)this.findViewById(R.id.unbind);
bind_button.setOnClickListener(mUnbindListener);

為什麼這段代碼中bind_button控件使用了兩次   請哪位大神解釋一下  謝謝啦
第一行和第三行的綁定控件。

最佳回答:


其實這種寫法不好,最好明確的定義兩個button變量,分別接收不同的值。

上述代碼設置了mbindLisetener和mUnbindListener兩個監聽。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved