我不是很熟悉Android的工作室,但是當我試圖使一個按鈕,讓它做一些事情上點擊我第一次加入android:onClick =「some_method_name」轉換爲用於設計應用程序的XML。我首先在onClick中添加了名稱,然後點擊了名稱。當小燈泡圖標顯示它旁邊的箭頭時,可以選擇使用剛寫入的方法名稱創建方法。一旦你創建它,然後你添加你想要發生的任何代碼,當你點擊。希望它有效。
對於實施例,這是XML:
<Button
android:id="@+id/playButton"
android:text="@string/play"
android:textSize="25sp"
android:background="#0099FF"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:paddingLeft="6dp"
android:paddingRight="6dp"
android:onClick="startGame" />
這是Java:
public void startGame(View view) {
Intent intent = new Intent(this,GameActivity.class);
startActivity(intent);
}
來源
2015-06-14 04:06:30
AMM
http://stackoverflow.com/questions/5812744/how-to-set-an- onclick-listener-for-an-imagebutton-in-an-alertdialog –