Button is used quite a lot. Here I have sorted out its event handling methods and found that there are many ways to implement it. I prefer the second one. What about you? Which one do you use most? Implementation 1: Copy code The code is as follows:Button bt_Demo = (Button)findViewById(R.id.bt_Demo); bt_Demo.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { //Respond to Clicked event //...... } }); Implementation 2: Copy code The code is as follows:Button bt_Demo = (Button)findViewById(R.id.bt_Demo); bt_Demo.setOnClickListener(listener); private OnClickListener listener = new OnClickListener(){ @Override public void onClick(View arg0) { // TODO Auto-generated method stub switch(arg0.getId()){ case R.id.bt_Demo: //Respond to Clicked event //...... break; default: break; } } } Implementation three: Copy code The code is as follows:Button bt_Demo = (Button)findViewById(R.id.bt_Demo); bt_Demo.setOnClickListener(new ButtonListener()); private class ButtonListener implements OnClickListener { @Override public void onClick(View arg0) { //Respond to Clicked event //...... } } Implementation Four: Copy code The code is as follows://Directly use the OnClickListener interface in Activity: import android.view.View.OnClickListener; public class MyActivity extends Activity implements OnClickListener { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //Button Button bt_Demo = (Button)findViewById(R.id.bt_Demo); bt_Demo.setOnClickListener(this); } //Respond to Click event public void onClick(View v) { switch (v.getId()) { case R.id.bt_Demo: //Respond to Clicked event //...... break; default: break; } } } Thank you for such a comprehensive summary. Although I know all of this, I lack the ability to summarize it myself. |
<<: Summary of accurate calculations of various distances/scroll distances in a window
>>: Sample code for implementing radar chart with vue+antv
Table of contents Creating OAuth Apps Get the cod...
Preface In the process of continuous code deliver...
step Place the prepared static resource files in ...
Written in front In recent years, the live stream...
Table of contents Preface 1. Demand and Effect ne...
This project shares the specific code of Vue+Rout...
The Raspberry Pi model is 4b, 1G RAM. The system ...
Ubuntu 18.04 installs mysql 5.7 for your referenc...
As of now, the latest version of CentOS is CentOS...
MySQL executes SQL through the process of SQL par...
1. Introduction As we all know, in the applicatio...
Frequently asked questions When you are new to ea...
Table of contents Achieve results Implementation ...
This article example shares the specific code of ...
1. MySQL download address; http://ftp.ntu.edu.tw/...