Android程序员首页投稿(暂停使用,暂停投稿)

android回调机制(附源码)

2016-10-09  本文已影响0人  左浩洋

1.回调的用处

1.要实现一个回调,一般需要三个类: 定义接口类、实现接口类、设置触发接口类;
2.在android中,回调是经常用到的,例如view的点击事件以及各种监听事件。而且还发者在写工具类或者自定义view时,也需要对外提供方法监听,这个时候就要用到回调了。
3.自己简单写了一个demo(皇上让太监派人打酱油的一个例子,有的地方写了注释,就没有在文章里写了,可以看看注释),呵呵,没有骂人的意思,也不要在意那些细节;写的比较逗比,凑活凑活看吧


callback.gif

2.定义回调类

  /** * 打酱油监听事件 */
  public interface BuySoyListener {    
      //派遣一个人去买酱油,还有知道这个人是谁    
      void dispatch(String name);
  }

3.皇上activity

 /**
 * 皇上activity
 * */
public class EmperorActivity extends AppCompatActivity {
    private Button mGoEunuch;
    private TextView mContent;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_emperor);
        mGoEunuch = (Button) findViewById(R.id.m_go_eunuch);
        mContent = (TextView) findViewById(R.id.m_content);

        //跳转到太监activity(让太监挑选一个人去买酱油)
        mGoEunuch.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //跳到太监类,选人打酱油
                startActivity(new Intent(EmperorActivity.this, EunuchActivity.class));
            }
        });

        //设置监听回调,将实例化对象转到太监类,,注意:重点在于实例化后的接口对象,回调主要通过该实例对象来实现回调的
        //(皇上突然想知道是谁打的酱油,打个电话告诉太监,派遣人员之后,再回个电话告诉我是谁去的)
        EunuchActivity.setOnBuySoyListener(new BuySoyListener() {
            @Override
            public void dispatch(String name) {
                //回调回来的参数显示到界面(太监告诉我,派遣谁去打的酱油)
                mContent.setText(name+ "去打的酱油");
            }
        });
    }
}

在皇上类中我们实例化了BuySoyListener接口,里面的重新方法dispatch(String name),是不会立即执行的;接口对象.dispatch("test")时,才会执行当前实例重写方法

activity_emperor.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".EmperorActivity">
    <Button
        android:id="@+id/m_go_eunuch"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="让太监去挑选一个人去打酱油"/>
    <TextView
        android:id="@+id/m_content"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="到底是谁打的酱油????"/>
</LinearLayout>

太监activity

    /**
* 太监activity
 * */
public class EunuchActivity extends AppCompatActivity {
    //定义全局接口对象, 当前接口对象为null
    private static BuySoyListener mBuySoyListener;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_eunuch);
    }
    //主要获取接口对象,可以知道当前接口对象是从哪个类中实现的
    //(太监接到皇上电话,保证派人打酱油之后,就给皇上回电话)
    public static void setOnBuySoyListener(BuySoyListener buySoyListener){
        mBuySoyListener = buySoyListener;
    }


    public void publicOnClick(View view) {
        //判断接口对象是否实例过,如果为null就不往下执行,否则空指针(如果皇上没有打电话过来,就不能自作主张的回电话)
        if (mBuySoyListener== null) return;
        switch (view.getId()){
            case R.id.m_btn1:
                //通过接口对象设置参数,并回调到当前接口对象的实例中的重写方法中; 当前代码执行完,立即执行接口对象实例的重写方法中:EmperorActivity(派遣人员之后,回电话告诉皇上,派遣的人员是谁)
                mBuySoyListener.dispatch("张三");
                break;
            case R.id.m_btn2:
                mBuySoyListener.dispatch("李四");
                break;
            case R.id.m_btn3:
                mBuySoyListener.dispatch("王五");
                break;
            case R.id.m_btn4:
                mBuySoyListener.dispatch("赵六");
                break;
        }
    }
}

对外方法setOnBuySoyListener主要用于在外面传递一个接口对象,通过接口对象进行回调参数设置

activity_eunuch.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".EunuchActivity">
    <Button
        android:id="@+id/m_btn1"
        android:text="张三去打酱油"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="publicOnClick"/>
    <Button
        android:id="@+id/m_btn2"
        android:text="李四去打酱油"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10px"
        android:onClick="publicOnClick"/>
    <Button
        android:id="@+id/m_btn3"
        android:text="王五去打酱油"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10px"
        android:onClick="publicOnClick"/>
    <Button
        android:id="@+id/m_btn4"
        android:text="赵六去打酱油"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10px"
        android:onClick="publicOnClick"/>
</LinearLayout>

源码地址:https://github.com/zuohaoyang/callback

上一篇 下一篇

猜你喜欢

热点阅读