Button控件点击方式比较多,本文简单介绍以下六种:
布局文件【button1.xml】
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="" android:layout_width="match_parent" android:layout_height="match_parent"> <!--按钮点击事件的实现--> <Button android:id="@+id/button" android:layout_width="match_parent" android:layout_height="wrap_content" android:onClick="click" android:text="按钮1" /> <Button android:id="@+id/button2" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/button" android:text="按钮2" /> </RelativeLayout>