1.xml代码:Button的属性android:onclick="方法名"
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button_send" android:onClick="sendMessage" />2.java代码中,对应的响应事件方法:
/** Called when the user clicks the Send button */ public void sendMessage(View view) { // Do something in response to button }3.注意事项:
3.2方法是void的返回类型
3.3参数必须只有一个,就是View类型的参数
原文链接:https://www.f2er.com/xml/297470.html