Android布局中的 android:onClick=“...”属性设置点击时从上下文中调用指定的方法。该属性值和要调用的方法名称完全一致。一般在Activity定义符合如下参数和返回值的函数并将方法名字符串指定为该属性值即可:
public void onClickButton(View view)
android:onClick=“onClickButton”
功能类似于Button的监听器。
android:id="@+id/main_login_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/btn_style_green"
android:text="登录"
android:onClick="welcome_login" />
/*本例子中,没有使用Button的监听器监听按钮动作。点击button登陆按钮就会调用如下方法。*/
public void welcome_login(View v) {
Intent intent = new Intent();
intent.setClass(Welcome.this,Login.class);
startActivity(intent);
}
网友评论