解決EventBus中接收方法中無法更新UI的問題
阿新 • • 發佈:2018-12-31
from :
http://www.th7.cn/Program/Android/201704/1153607.shtml
問題
比如介面MainActivity向介面SecondActivity傳送訊息時,介面S呼叫接收方法,可以接收介面M傳送的訊息,輸出臺log可以打印出訊息內容,但是無法更新UI。
MainActivity
Button eventBus= (Button) findViewById(R.id.eventbus); RxView.clicks(eventBus) .throttleFirst(1,TimeUnit.SECONDS) .observeOn(AndroidSchedulers.mainThread()) .subscribe(new Consumer<Object>() { @Override public void accept(@NonNull Object o) throws Exception { EventBus.getDefault().postSticky(new MessageEvent("MainActivity:this is Sticky")); startActivity(SecondActivity.class); } });'
SecondActivity
@Override @org.greenrobot.eventbus.Subscribe protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); UtilsLog.i("主執行緒Id="+Thread.currentThread().getId()+",主執行緒名字="+Thread.currentThread().getName()); setContentView(R.layout.activity_second); EventBus.getDefault().register(this); initView(); } private void initView() { show= (TextView) findViewById(R.id.result); show.setText("沉夢昂志"); } @org.greenrobot.eventbus.Subscribe(sticky=true,threadMode = org.greenrobot.eventbus.ThreadMode.MAIN) public void receiveMainActivity(MessageEvent event){ String result=event.getMessage(); show.setText(result); }
分析問題
如果不仔細看程式碼的話,這樣寫的話感覺沒問題。但是會出現一個問題,就是介面S的TextView一直不會更新,不會顯示介面M傳送的訊息內容。其實問題就是在介面S,訂閱訊息事件的程式碼寫錯位置了,EventBus.getDefault().register(this);這句程式碼放在initView()之前,造成的結果就是介面的控制元件還未初始化,就接收訊息了,介面無法更新UI,也就是TextView還未初始化。
解決問題
只需要把EventBus.getDefault().register(this)放在最後就行了。
@Override @org.greenrobot.eventbus.Subscribe protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_second); initView(); EventBus.getDefault().register(this); }