如果我们从xml调用onClickListener
和onClick()
方法,则始终调用onClickListener
方法。
为什么会这样?
public class MainActivity extends Activity {
Button buttonCheck;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
buttonCheck = (Button) findViewById(R.id.buttonTesting);
buttonCheck.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Toast.makeText(getApplicationContext(), "On Click Listener", Toast.LENGTH_SHORT).show();
Log.e("OnClick", "Called");
}
});
}
public void checkStatus(View view) {
Toast.makeText(getApplicationContext(), "On checkStatus", Toast.LENGTH_SHORT).show();
Log.e("checkStatus", "Called");
}
}
xml layout:
<Button
android:id="@+id/buttonTesting"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="162dp"
android:onClick="checkStatus"
android:text="Check" />
答案 0 :(得分:8)
onClick
中的{p> xml
在创建视图时只调用setOnClickListener
。当您在代码中调用setOnClickListener
时,它会覆盖OnClickListener
中设置的现有xml
。
答案 1 :(得分:0)
因为当调用Button类构造函数从xml进行膨胀时,它会将onClick方法设置为checkStatus。 现在你在你的活动onCreate中覆盖了这个。 因此,后一个是onClick,它将被getCalled。