Summary of Button's four Click response methods

Summary of Button's four Click response methods

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

Recommend

Example of implementing GitHub's third-party authorization method in Vue

Table of contents Creating OAuth Apps Get the cod...

How to periodically clean up images that are None through Jenkins

Preface In the process of continuous code deliver...

How to publish static resources in nginx

step Place the prepared static resource files in ...

Use Nginx to build a streaming media server to realize live broadcast function

Written in front In recent years, the live stream...

Vue2 cube-ui time selector detailed explanation

Table of contents Preface 1. Demand and Effect ne...

Vue+Router+Element to implement a simple navigation bar

This project shares the specific code of Vue+Rout...

Installation steps of docker-ce on Raspberry Pi 4b ubuntu19 server

The Raspberry Pi model is 4b, 1G RAM. The system ...

Install mysql5.7 on Ubuntu 18.04

Ubuntu 18.04 installs mysql 5.7 for your referenc...

Installation process of CentOS8 Linux 8.0.1905 (illustration)

As of now, the latest version of CentOS is CentOS...

Overview of MySQL Statistics

MySQL executes SQL through the process of SQL par...

MySQL Failover Notes: Application-Aware Design Detailed Explanation

1. Introduction As we all know, in the applicatio...

Easyswoole one-click installation script and pagoda installation error

Frequently asked questions When you are new to ea...

Element-ui directly clicks on the cell in the table to edit

Table of contents Achieve results Implementation ...

Vue implements tree table

This article example shares the specific code of ...

MySQL 8.0.20 compressed version installation tutorial with pictures and text

1. MySQL download address; http://ftp.ntu.edu.tw/...