当前位置:   article > 正文

Android studio Button 监听敲击事件

Android studio Button 监听敲击事件

1,在布局实现

我们在layout文件中,给每一个用到的Button设置属性android:onClick="onClick",  然后我们在MainActivity 里面写一个onClick()方法,这里就不是重写了,因为我们没有任何继承父类和引用接口,这里的方法名可以随意取。然后写上代码逻辑。完整代码如下:

activity_main.xml文件内容如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".MainActivity">
  9. <TextView
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:text="学习安卓,你准备好了吗"
  13. android:id="@+id/tv_android"/>
  14. <Button
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:text="准备好了"
  18. android:id="@+id/bt_android"
  19. android:onClick="Welcome"/>##设置点击事件按钮方法为Welcome
  20. <Button
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:text="没有准备好"
  24. android:id="@+id/bt_android_1"
  25. android:onClick="noway"/>##设置点击事件按钮方法为noway
  26. </LinearLayout>

MainActivity文件如下:

  1. package com.unity3d.myapplication1;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.os.Bundle;
  4. import android.view.View;
  5. import android.widget.Toast;
  6. /*
  7. public class MainActivity extends AppCompatActivity {
  8. @Override
  9. protected void onCreate(Bundle savedInstanceState) {
  10. super.onCreate(savedInstanceState);
  11. setContentView(R.layout.activity_main);
  12. }
  13. }*/
  14. public class MainActivity extends AppCompatActivity {
  15. @Override
  16. protected void onCreate(Bundle savedInstanceState) {
  17. super.onCreate(savedInstanceState);
  18. setContentView(R.layout.activity_main);
  19. }
  20. public void Welcome(View view) {
  21. Toast.makeText(this, "欢迎来到安卓世界", Toast.LENGTH_SHORT).show();
  22. }
  23. public void noway(View view) {
  24. Toast.makeText(this, "bye bye bye ", Toast.LENGTH_SHORT).show();
  25. }
  26. }

二、接口实现

  第二种方法只要引用View.OnClickListener这个接口就行,接着Button button=findViewById(R.id.button);用来声明和绑定button控件,button.setOnClickListener(this);设置button的监听器,这两者缺一不可。下面就是重写onClick()方法,一般使用switch语句,参数是view,可以根据不同id来赋予不同的点击事件,不用像上面匿名内部类那样每一个按钮都要单独设置一下点击事件。所有代码如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".MainActivity">
  9. <LinearLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:orientation="vertical">
  13. <Button
  14. android:id="@+id/button_1"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:text="测试按键"
  18. android:textSize="25sp"/>
  19. <TextView
  20. android:id="@+id/tv"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:layout_gravity="center"
  24. android:text="11111"
  25. android:textSize="25sp"/>
  26. <Button
  27. android:id="@+id/button_2"
  28. android:layout_width="match_parent"
  29. android:layout_height="43dp"
  30. android:text="ok ok ok "
  31. android:textSize="25sp"
  32. />
  33. </LinearLayout>
  34. </androidx.constraintlayout.widget.ConstraintLayout>

  1. package com.unity3d.myapplication1;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.os.Bundle;
  4. import android.view.View;
  5. import android.widget.Toast;
  6. import android.widget.Button;
  7. import android.util.Log;
  8. import android.widget.TextView;
  9. public class MainActivity extends AppCompatActivity {
  10. Button TestButton1, TestButton2; //创建button
  11. @Override
  12. protected void onCreate(Bundle savedInstanceState) {
  13. super.onCreate(savedInstanceState);
  14. setContentView(R.layout.activity_main);
  15. TestButton1 = findViewById(R.id.button_1); //通过id找到对应button
  16. TestButton2 = findViewById(R.id.button_2);
  17. TestButton1.setOnClickListener(new mButtonListener());
  18. TestButton2.setOnClickListener(new mButtonListener());
  19. }
  20. //新建mButtonListener类申明使用OnClickListener接口
  21. public class mButtonListener implements View.OnClickListener{
  22. @Override
  23. public void onClick(View v) {
  24. switch (v.getId()) {
  25. case R.id.button_1: //按键1
  26. Toast.makeText(MainActivity.this,"Hello world",Toast.LENGTH_LONG).show();
  27. Log.d("button", "onClick: 1");
  28. break;
  29. case R.id.button_2: //按键2
  30. Toast.makeText(MainActivity.this,"ok ok ok ok ",Toast.LENGTH_LONG).show();
  31. Log.d("button", "onClick: 2");
  32. break;
  33. default: break;
  34. }
  35. }
  36. }
  37. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/545738
推荐阅读
相关标签
  

闽ICP备14008679号