首页  编辑  

我喜欢的事件处理模式,例如Button Click

Tags: /Android/   Date Created:
为了给Button写上Click事件代码,可以在Activity中,写上OnClick代码,如下:
Then in the class, handle the method:
public void onButtonClickCancel(View view) {
    Toast.makeText(this, "Cancel pressed", Toast.LENGTH_LONG).show();
}
此后,可以在设计器中,找到button,在onclick属性中,可以关联代码,也可以手动写代码类似下面来关联事件处理:    
    android:clickable="true"
    android:onClick="onButtonClickCancel"