任何人都可以让我简单或清楚地告诉我编码器在最后一行中如何使用(这个):
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Set up click listeners for all the buttons
View continueButton = findViewById(R.id.continue_button);
continueButton.setOnClickListener(this);<-----------------------------------
}
答案 0 :(得分:5)
this
我s a reference to an instance of the class that the method belongs too,特别是当前实例。 this
的变量始终指向当前对象。
在实例方法或 构造函数,这是一个引用 当前对象 - 其对象 正在调用方法或构造函数。 你可以参考任何一个成员 实例中的当前对象 方法或构造函数使用它。
答案 1 :(得分:2)
他们已将按钮的点击监听器设置为this
。
换句话说,单击该按钮时,将在此对象上调用onClick
。