來不及解釋了,快上車之EventBus3.0快速上手

快速教你上手EventBus3.0,在EventBus3.0之前用法不同茫因,就不在這里說了蚪拦。
準備工作,建立EventBus3.0的依賴:

compile 'org.greenrobot:eventbus:3.0.0'

基本使用

1.在需要訂閱的組件內(nèi)注冊事件:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    message = (TextView) this.findViewById(R.id.message);
    EventBus.getDefault().register(this);
}

2.在結(jié)束的時候注銷事件:

@Override
protected void onDestroy() {
    super.onDestroy();
    EventBus.getDefault().unregister(this);
}

3.定義接受事件的方法,可以看到下面代碼的源注釋冻押,當(dāng)需要定義接受方法的時候驰贷,就需要如此申明
threadMode = ThreadMode.MAIN表示接受的方法發(fā)生的線程洛巢,其他線程指定的方式在下一章具體解釋括袒。
注意:參數(shù)不支持基本數(shù)據(jù)類型,想用整型必須使用Integer:

@Subscribe(threadMode = ThreadMode.MAIN)
public void onBus(String msg){
    message.setText(msg);
}

4.發(fā)送事件參數(shù)稿茉,發(fā)送的參數(shù)不支持基本數(shù)據(jù)類型:

public void oneView(View v){
    EventBus.getDefault().post("開車了");
}

以上就是EventBus的基本使用了:下面介紹一下簡單的用法:

用法一锹锰,同一組件內(nèi)發(fā)送和接收事件

package com.jelly.eventbus;

import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.TextView;

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

public class MainActivity extends AppCompatActivity {

    private TextView message;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        message = (TextView) this.findViewById(R.id.message);
        EventBus.getDefault().register(this);
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        EventBus.getDefault().unregister(this);
    }

    /**
     * 同一界面內(nèi)傳遞字符串
     * @param msg
     */
    @Subscribe(threadMode = ThreadMode.MAIN)
    public void onBus(String msg){
        message.setText(msg);
    }
    

    public void oneView(View v){
        EventBus.getDefault().post("同一界面內(nèi)點擊");
    }
}

在Activity的生命周期onCreate方法中注冊事件,在onDestroy()方法中注銷事件漓库,寫了一個在主線程中執(zhí)行的接收事件的方法修改TextView的值恃慧,點擊按鈕是發(fā)送事件。

用法二渺蒿,事件傳遞自定義的對象

定義一個Bean

public class Message {
    public String message;

    public Message(String message) {
        this.message = message;
    }
}

事件接收和發(fā)送邏輯痢士,在這里發(fā)送的是自定義的對象

package com.jelly.eventbus;

import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.TextView;

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

public class MainActivity extends AppCompatActivity {

    private TextView message;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        message = (TextView) this.findViewById(R.id.message);
        EventBus.getDefault().register(this);
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        EventBus.getDefault().unregister(this);
    }

    /**
     * 傳遞對象
     * @param msg
     */
    @Subscribe(threadMode = ThreadMode.MAIN)
    public void onBus(Message msg){
        message.setText(msg.message);
    }

    public void postObj(View v){
        EventBus.getDefault().post(new Message("傳遞對象"));
    }
}

用法三,在不同的組件之間發(fā)送和接收事件

接收事件的Activity

package com.jelly.eventbus;

import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.TextView;

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

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        message = (TextView) this.findViewById(R.id.message);
        EventBus.getDefault().register(this);
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        EventBus.getDefault().unregister(this);
    }
    
    /**
     * 不同組件之間傳遞數(shù)據(jù)
     * @param i
     */
    @Subscribe(threadMode = ThreadMode.MAIN)
    public void onBus(Integer i){
        Log.v("bus",i+"");
    }

    public void secondView(View v){
        Intent intent = new Intent(this,SecondActivity.class);
        startActivity(intent);
    }

}

發(fā)送事件的Activity茂装,剛開始寫的時候在發(fā)送事件的Activity里面內(nèi)也加上的注冊和注銷操作怠蹂,然后運行失敗,在發(fā)送事件的組件內(nèi)不需要在注冊和注銷EventBus

package com.jelly.eventbus;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;

import org.greenrobot.eventbus.EventBus;

/**
 * Created by Jelly on 2016/9/27.
 */

public class SecondActivity extends Activity{

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

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

    public void twoCon(View view){
        Log.v("bus","點擊");
        EventBus.getDefault().post(1);
    }

}

在接收事件的Activity中啟動發(fā)送事件的Activity少态,點擊其中的按鈕城侧,打印的日志結(jié)果如下

結(jié)果

更多用法見來不及解釋了,快上車之EventBus3.0更多實用使用

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末况增,一起剝皮案震驚了整個濱河市赞庶,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖歧强,帶你破解...
    沈念sama閱讀 211,376評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件澜薄,死亡現(xiàn)場離奇詭異,居然都是意外死亡摊册,警方通過查閱死者的電腦和手機肤京,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來茅特,“玉大人忘分,你說我怎么就攤上這事“仔蓿” “怎么了妒峦?”我有些...
    開封第一講書人閱讀 156,966評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長兵睛。 經(jīng)常有香客問我肯骇,道長,這世上最難降的妖魔是什么祖很? 我笑而不...
    開封第一講書人閱讀 56,432評論 1 283
  • 正文 為了忘掉前任笛丙,我火速辦了婚禮,結(jié)果婚禮上假颇,老公的妹妹穿的比我還像新娘胚鸯。我一直安慰自己,他們只是感情好笨鸡,可當(dāng)我...
    茶點故事閱讀 65,519評論 6 385
  • 文/花漫 我一把揭開白布姜钳。 她就那樣靜靜地躺著,像睡著了一般镜豹。 火紅的嫁衣襯著肌膚如雪傲须。 梳的紋絲不亂的頭發(fā)上蓝牲,一...
    開封第一講書人閱讀 49,792評論 1 290
  • 那天趟脂,我揣著相機與錄音,去河邊找鬼例衍。 笑死昔期,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的佛玄。 我是一名探鬼主播硼一,決...
    沈念sama閱讀 38,933評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼梦抢!你這毒婦竟也來了般贼?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,701評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎哼蛆,沒想到半個月后蕊梧,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,143評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡腮介,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,488評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了甘改。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,626評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡十艾,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出腾节,到底是詐尸還是另有隱情疟羹,我是刑警寧澤,帶...
    沈念sama閱讀 34,292評論 4 329
  • 正文 年R本政府宣布榄融,位于F島的核電站,受9級特大地震影響愧杯,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜鞋既,卻給世界環(huán)境...
    茶點故事閱讀 39,896評論 3 313
  • 文/蒙蒙 一力九、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧邑闺,春花似錦跌前、人聲如沸望蜡。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,742評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽消痛。三九已至颅眶,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間涛酗,已是汗流浹背铡原。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留沪哺,地道東北人酌儒。 一個月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像忌怎,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子榴啸,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,494評論 2 348

推薦閱讀更多精彩內(nèi)容