[前提]
现有一 Button 其id = yesButton
[代码]
1. 普通用法
2. 便捷用法
[评价]
不需要定义该Button
现有一 Button 其id = yesButton
[代码]
1. 普通用法
Button button = (Button) findViewById(yesButton);
button.setOnClickListener(new OnClickListener(){
public void onClick(View v) {
}
2. 便捷用法
findViewById(yesButton).setOnClickListener(new OnClickListener(){
public void onClick(View v) {
}
[评价]
不需要定义该Button
本文介绍在Android中如何为一个ID为yesButton的Button设置点击事件监听器,提供了两种方法:一是通过Button对象设置,二是直接使用findViewById进行设置。
2656

被折叠的 条评论
为什么被折叠?



