How exactly does the android:onClick XML attribute differ from setOnClickListener?

后端 未结 17 2115
野趣味
野趣味 2020-11-21 11:50

From that I\'ve read you can assign a onClick handler to a button in two ways.

Using the android:onClick XML attribute where you just use t

17条回答
  •  渐次进展
    2020-11-21 12:24

    The best way to do this is with the following code:

     Button button = (Button)findViewById(R.id.btn_register);
     button.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    //do your fancy method
                }
            });
    

提交回复
热议问题