換到 Kotlin 后,之前的 EventBus 不能正常用,發現這個還挺好用的。
依賴:
compile 'com.eightbitlab:rxbus:1.0.2'
注意事項:
- 可以直接在 Fragment 中使用,不用 Activity 中使用后再發送事件到 Fragment。
注冊和接收事件:
Bus.observe<UpdatePersonInfoEvent>()
.subscribe {
personInfo(it)
}
.registerInBus(this)
取消注冊:
Bus.unregister(this)
發送事件:
Bus.send(UpdatePersonInfoEvent(true))