2015-10-19 166 views
0

我想從活動到我的片段發送數據使用奧托事件總線匕首2 +事件總線

從我的活動:

@Produce 
public EventAvailableEvent produceEvent() { 
    return new EventAvailableEvent(mEvent); 
} 

要片段:

@Subscribe 
public void onProvideEvent(EventAvailableEvent event) { 
    mEvent = event.getEvent(); 
} 

我m使用匕首2注入總線

@Inject Bus mBus; 

private void injectDepedencies() { 
    App.from(getActivity()).getComponent().plus(new MyModule(mEvent)); 
} 

我的模塊依賴於事件總線返回的事件。

現在,我要做的就是首先注入的主要成分,註冊總線,再注入子

AppComponent appComponent = App.from(getActivity()).getComponent(); 
appComponent.inject(this) 
mBus.register(this) 
SubComponent subComponent = appComponent.plus(new MyModule(mEvent)); 
subComponent.inject(this) 

我正在尋找這更好的方法,謝謝

回答

0

因爲我想你SubComponent是AppComponent的一個子組件,它繼承了它提供的所有項目。 Described here

該關係允許子組件實現在聲明時從其父項繼承整個綁定圖。

這意味着,你可以踢出前2行,你只需要創建你的SubComponent。

App.from(getActivity()).getComponent().plus(new MyModule(mEvent)).inject(this); 
mBus.register(this); 

實際上就夠了。