首先在界面的XML里添加按钮响应函数 android:onClick="OnMyClick"
1 2 3 4 5 6 7 8 9 |
<Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@+id/textView1" android:layout_below="@+id/textView1" android:layout_marginTop="30dp" android:onClick="OnMyClick" android:text="Button" /> |
然后再在java代码文件里添加响应函数就可以了。
1 2 3 4 5 6 7 8 9 10 11 |
public void Msg1( ) { Toast toast = new Toast(this); Toast toast1 = toast.makeText(this, "Hello World", Toast.LENGTH_LONG); toast1.show(); } public void OnMyClick(View v) { Msg1(); //消息提示显示 } |
这种添加响应函数的方法简单吧,感觉代码可读性比添加setOnClickListener监听用户单击操作要好多了。setOnClickListener的方法让代码比较太多,太罗嗦了。
转载请注明:exchen's blog » Android安卓程序消息提示和按钮响应事件