Android —— EventBus使用簡介

參考博客:http://www.javashuo.com/article/p-phypdgrq-ka.htmljava

  • EventBus簡介
  • EventBus有哪些優勢
  • Demo案例分享及問題解決

1、什麼是EventBusandroid

      由greenboot組織貢獻(該組織還貢獻了greenDAO),一個Android事件發佈/訂閱輕量級框架。app

      EventBus能夠代替Android傳統的Intent,Handler,Broadcast或接口函數,在Fragment,Activity,Service線程之間傳遞數據,執行方法。框架

      EventBus有五種線程模式分別是:ide

  1. POSTING:默認,表示事件處理函數的線程和發佈事件的線程在同一個線程。
  2. MAIN:表示事件處理函數的線程在UI主線程(不能進行耗時操做)
  3. BACKGROUND:表示事件處理函數的線程在後臺線程,所以不能進行UI操做,若是發佈事件的線程是UI主線程那麼時間處理函數將會開啓一個後臺線程,若是發佈事件的函數在後臺線程,那麼事件處理函數就使用該線程。
  4. ASYNC:表示不管時間發佈的線程是哪個,事件處理函數始終會新建一個子線程運行(不能進行UI操做)
  5. MAIN_ORDERED:EventBus3.1.1以後新加入的,和MAIN不一樣的是必定會排隊執行

2、EventBus有哪些優勢?函數

  • 簡化了組件間的通信。
  • 分離了事件的發送者和接受者。
  • 在Activity、Fragment和線程中表現良好。
  • 避免了複雜的和易錯的依賴關係和生命週期問題。
  • 使得代碼更簡潔,性能更好。
  • 更快,更小(約50k的jar包)。

3、Demo案例分享及問題解決post

       下面用一個簡單的例子介紹一下EventBus的使用,這個例子實現的功能是:有界面一、界面二、兩個界面,界面1跳轉到界面2,界面2返回界面1時,帶回一個參數,而且在界面1中以Toast方式展示。性能

 

  1.   添加依賴:在項目app包下的bulid.grade中添加:implementation 'org.greenrobot:eventbus:3.1.1'

        

 

 

       

        2.  定義事件:定義一個事件的封裝對象。在程序內部就使用該對象做爲通訊的信息:     this

public class FirstEvent {

    private String strMsg;

    public FirstEvent(String strMsg) {
        this.strMsg = strMsg;
    }

    public String getStrMsg() {
        return strMsg;
    }
}

      

         3.  註冊EventBus : 咱們要在接受消息的界面註冊EventBus,界面1負責接受消息,咱們將註冊EventBus的代碼放到界面1,(在onDestory中反註冊)註冊代碼:spa

        

 

        這裏必定要注意:EventBus.getDefult().resgister(this);必定要在一個public方法內,並且方法前邊必定加上註解:@Subscribe,不然會報錯:org.greenrobot.eventbus.EventBusException:

         

 

         4. 發送消息:使用EventBus中的Post方法來實現發送的,發送過去的是咱們新建的類的實例(即第二步定義事件的實體類FirstEvent),發送消息在界面2,鎖一在界面2中添加代碼:

         

         注意:紅框部分必定加上,不然代碼無效

 

        5. 接收消息:在界面1中接收界面2返回的消息,須要在界面1中添加代碼:

        

 

 

       完整代碼以下:界面1的xml文件和java文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/tv_maintext"
        android:text="小朋友  你是否有不少的問號?"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
    <Button
        android:id="@+id/btn_mainbtn"
        android:layout_width="match_parent"
        android:text="主界面"
        android:layout_height="wrap_content"/>

</LinearLayout>
package com.cyf.mytestdemo;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

import org.greenrobot.eventbus.EventBus;
import org.greenrobot.eventbus.Subscribe;
import org.greenrobot.eventbus.ThreadMode;

public class MainActivity extends AppCompatActivity {

    private Button btn_main;
    private TextView tv_maintext;

    @Subscribe
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //註冊該頁面爲訂閱者
        EventBus.getDefault().register(this);

        btn_main=findViewById(R.id.btn_mainbtn);
        tv_maintext=findViewById(R.id.tv_maintext);

        btn_main.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                Intent intent=new Intent(MainActivity.this,SecondActivity.class);
                startActivity(intent);

            }
        });


    }

    @Subscribe(threadMode = ThreadMode.MAIN)
    public void onEventMainThread(FirstEvent event){
        Log.e("-----", "___________________________"+event.getStrMsg());
        Toast.makeText(this,event.getStrMsg(),Toast.LENGTH_SHORT).show();
    }





    @Override
    protected void onDestroy() {
        super.onDestroy();

        //反註冊
        EventBus.getDefault().unregister(this);
    }
}

        界面2的xml和java文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".SecondActivity">

    <Button
        android:id="@+id/btn_second"
        android:text="!!!!!"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</LinearLayout>
package com.cyf.mytestdemo;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;

import org.greenrobot.eventbus.EventBus;

public class SecondActivity extends AppCompatActivity {

    private Button btn_second;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_second);

        btn_second=findViewById(R.id.btn_second);

        btn_second.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                EventBus.getDefault().post(new FirstEvent("我只有感嘆號"));
                finish();

            }
        });
    }
}
相關文章
相關標籤/搜索