写下这个题目时突然想起鲁迅笔下的孔乙已,茴香豆的几种写法,颇有些咬文嚼字的味道。虽然从事手机编程多年,但一直使用的是C和C++编程,由于安卓早期只支持JAVA开发,所以对于时下如火如荼的安卓系统,我一直观之而未入之。现在由于工作需要开始研究安卓编程,由于以前主要使用C语言,乍遇JAVA,在思考方式上,写法上,编程规范上所遇问题颇多。单单一个Listener方法,在是否使用匿名类匿名对象时,就是各种不同的写法。OnClickListener和其他Listener方法一样,都是View类的抽象接口,重载后就能使用,定义如下:
// 编译自View.java (版本 1.5:49.0,无超级位)
public abstract static interface android.view.View$OnClickListener {
 
  // 方法描述符 #4 (Landroid/view/View;)V
  public abstract void onClick(android.view.View arg0);

内部类:
    [内部类信息: #1 android/view/View$OnClickListener, 外部类信息: #7 android/view/View
     内部名: #9 OnClickListener, 访问标志:1545 public abstract static]
}
这是一个抽象接口的定义,在使用上可以像类一样派生。抽象接口interface)和抽象类(class)是和C,C++不一样的,但在JAVA中两者比较相似,但却又是不同的,有关这方面的概率可以从JAVA编程中了解到,C++程序员也许会对这两者感觉不知所措,不知道该为某些实现创建抽象接口还是抽象类。这可能需要一定的代码实战经验才能更好的把握。
Listener在使用上有多种写法,了解这些,对编写程序好处比较有限,但对阅读代码却又是有用的。大约也可以像孔乙已一样拿来炫耀吧,但我认为,这对初涉安卓编程的其他程序员来深入了解JAVA或者安卓编程,具有很重要的意义。本例使用了六种方法,由于JAVA语法的灵活性,很可能换种思考,一种新的方法就诞生了,所以本文仅做了解,不要让他成为你的灵魂锁链,导致限制了你在安卓领域做更深入更广泛的探索和贡献。当然如果你发现的新的写法或者创造什么新的写法,也可以告诉我,大家一起学习。下面是程序代码:

使用eclipse创建安卓工程,假设工作名字使用button4,包使用com.mypack,在窗口中加入6个BUTTON.,使用默认命名,系统自动会命名为button1到button6,再加入一个editText,系统会自动命名为editText1.工程项目包名都可以随意。

资源的main.xml文件内容如下

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical" >
  6. <TextView
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:text="@string/hello" />
  10. <Button
  11. android:id="@+id/button1"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="Button1" />
  15. <Button
  16. android:id="@+id/button2"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:text="Button2" />
  20. <Button
  21. android:id="@+id/button3"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:text="Button3" />
  25. <Button
  26. android:id="@+id/button4"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:text="Button4"
  30. android:onClick="Btn4OnClick" />
  31. <Button
  32. android:id="@+id/button5"
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:text="Button5" />
  36. <Button
  37. android:id="@+id/button6"
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:text="Button6" />
  41. <EditText
  42. android:id="@+id/editText1"
  43. android:layout_width="match_parent"
  44. android:layout_height="wrap_content"
  45. android:text="click button">
  46. <requestFocus />
  47. </EditText>
  48. </LinearLayout>

Button4Activity.java文件内容为:

  1. package com.mypack;
  2. import com.mypack.R;
  3. import android.app.Activity;
  4. import android.os.Bundle;
  5. import android.util.*;
  6. import android.view.View;
  7. import android.view.View.OnClickListener;
  8. import android.widget.Button;
  9. import android.widget.EditText;
  10. import com.mypack.callOut;
  11. public class Button4Activity extends Activity implements OnClickListener {
  12. /** Called when the activity is first created. */
  13. private Button m_button1, m_button2, m_button3, m_button4, m_button5,
  14. m_button6;
  15. public EditText ET;
  16. @Override
  17. public void onCreate(Bundle savedInstanceState) {
  18. super.onCreate(savedInstanceState);
  19. setContentView(R.layout.main);
  20. m_button1 = (Button) findViewById(R.id.button1);
  21. m_button2 = (Button) findViewById(R.id.button2);
  22. m_button3 = (Button) findViewById(R.id.button3);
  23. m_button4 = (Button) findViewById(R.id.button4);
  24. m_button5 = (Button) findViewById(R.id.button5);
  25. m_button6 = (Button) findViewById(R.id.button6);
  26. ET = (EditText) findViewById(R.id.editText1);
  27. /*
  28. * 方法1,其中的this相当于new OnClickListener()对象, 即class test 中的一个对象,
  29. * 而如果要用这种方式的话,public void onClick 方法必须写在该test类中, 且在开头使用implements
  30. * OnClickListener, 即this对象可以直接调用该方法
  31. */
  32. m_button1.setOnClickListener(this);
  33. //方法2,使用对象clickListener
  34. m_button2.setOnClickListener(clickListener);
  35. //方法3,使用匿名对象创建监听,同方法论,可以看作另一种写法
  36. m_button3.setOnClickListener(new Button.OnClickListener() {
  37. @Override
  38. public void onClick(View v) {
  39. String strTmp = "点击Button03";
  40. ET.setText(strTmp);
  41. }
  42. });
  43. //方法4,使用XML文件创建时绑定方法Btn4OnClick
  44. //方法5,自己设计个监听类,监听的方法引用OnClickListener接口中的方法,创建的是匿名对象
  45. m_button5.setOnClickListener(new clickListener2());
  46. //方法6, 外部类实现事件监听器接口,很少用   ,详看文件callout.java
  47. m_button6.setOnClickListener(new callOut(this));
  48. }
  49. @Override
  50. public void onClick(View v) {
  51. Log.i("log", "click");
  52. String strTmp = "点击Button01";
  53. ET.setText(strTmp);
  54. }
  55. public OnClickListener clickListener = new OnClickListener() {
  56. public void onClick(View v) {
  57. Log.i("log", "click");
  58. String strTmp = "点击Button02";
  59. ET.setText(strTmp);
  60. }
  61. };
  62. public class clickListener2 implements View.OnClickListener {
  63. public void onClick(View v) {
  64. Log.i("log", "click");
  65. String strTmp = "点击Button05";
  66. ET.setText(strTmp);
  67. }
  68. };
  69. public void Btn4OnClick(View view) {
  70. String strTmp = "点击Button04";
  71. ET.setText(strTmp);
  72. }
  73. }

文件中最后一个按钮使用了类callOut,CALLOUT.java代码如下:

    1. package com.mypack;
    2. import android.app.Activity;
    3. import android.view.View;
    4. import android.view.View.OnClickListener;
    5. import com.mypack.Button4Activity;
    6. public class callOut implements OnClickListener {
    7. private Button4Activity act;
    8. public callOut(Activity activity)
    9. {
    10. act = (Button4Activity)activity;
    11. }
    12. @Override
    13. public void onClick(View v)
    14. {
    15. String strTmp = "点击Button06";
    16. act.ET.setText(strTmp);
    17. }
    18. }

Android编程之Listener侦听的N种写法及实现原理的更多相关文章

  1. Android Listener侦听的N种写法

    Android中,View的Listener方法,在是否使用匿名类匿名对象时,有各种不同的写法. OnClickListener和其他Listener方法一样,都是View类的接口,重载实现后就能使用 ...

  2. 【转】Android Listener侦听的N种写法

    原文网址:http://blog.csdn.net/ithomer/article/details/7489274 Android中,View的Listener方法,在是否使用匿名类匿名对象时,有各种 ...

  3. Android Listener 监听的几种写法

    Android中,View的Listener方法,在是否使用匿名类匿名对象时,有各种不同的写法. OnClickListener和其他Listener方法一样,都是View类的接口,重载实现后就能使用 ...

  4. Android编程之LayoutInflater的inflate方法实例

    假设你不关心其内部实现,仅仅看怎样使用的话,直接看这篇就可以. 接上篇,接下来,就用最最简单的样例来说明一下: 用两个布局文件main 和 test: 当中,main.xml文件为: <?xml ...

  5. Android编程之LayoutInflater的inflate方法详解

    LayoutInflater的inflate方法,在fragment的onCreateView方法中经常用到: public View onCreateView(LayoutInflater infl ...

  6. Android开发之bindService()侦听service内部状态

    在Android开发之bindService()通信的基础上,实现bindService()方法侦听service内部状态. 实现侦听service内部状态,使用的是回调机制 1.首先实现一个接口 p ...

  7. Android代码规范----按钮单击事件的四种写法

    [前言] 按钮少的时候用第三种的匿名内部类会比较快,比如写demo测试的时候或者登陆界面之类. 按钮多的时候一般选择第四种写法. 一.第一种写法:在XML文件中声明onClick属性(很少用) 在XM ...

  8. Android开发系列之按钮事件的4种写法

    经过前两篇blog的铺垫,我们今天热身一下,做个简单的例子. 目录结构还是引用上篇blog的截图. 具体实现代码: public class MainActivity extends Activity ...

  9. Android开发系列之button事件的4种写法

    经过前两篇blog的铺垫,我们今天热身一下,做个简单的样例. 文件夹结构还是引用上篇blog的截图. 详细实现代码: public class MainActivity extends Activit ...

随机推荐

  1. 使用await写异步优化代码

    使用promise: function readMsg(){ return dispatch=>{ axios.post('/msgList').then(res=>{ console.l ...

  2. Centos 7 安装openjdk8

    一.使用yum命令搜索支持jdk版本 yum search java|grep jdk 二.使用yum安装jdk8 yum install -y java--openjdk 三.检查是否成功 java ...

  3. 【转载】将本地图片转成base64

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  4. 带你逐行阅读redux源码

    带你逐行阅读redux源码 redux版本:2019-7-17最新版:v4.0.4 git 地址:https://github.com/reduxjs/redux/tree/v4.0.4 redux目 ...

  5. js error监控

    window.onerror = function(message, source, lineno, colno, error) { ... } 功能参数: message:错误消息(字符串).eve ...

  6. 工具类Collections、Arrays(传入的是数组)

    Collections类: 1. Collections.sort(list)   //对list集合进行排序前提是 list里面存储的对象已经实现了 comparable接口 2. Collecti ...

  7. Python内置数学函数

    class NumString: def __init__(self, value): self.value = str(value) def __str__(self): return self.v ...

  8. linux安装apue.3e

    (1)下载源代码,可以去官网下载:http://apuebook.com/code3e.html (2)解压缩源代码文件:tar -zxvf src.3e.tar.gz (3) 安装静态链接库:sud ...

  9. js动态添加的元素绑定事件

    最近做的项目要实现一个动态添加动态删除的功能,思考了一下,该怎么给动态添加的元素绑定事件.最后觉得有两种方式比较可靠,第一种是在动态添加的html代码里添加oclick事件,然后给传个唯一的参数来判断 ...

  10. Linux进程管理之ps的使用

    主题Linux进程管理之ps工具的使用 一ps工具的介绍 ps: process state  进程状态ps - report a snapshot of the current processesL ...