EventBus是针对Android优化的发布-订阅事件总线,简化了Android组件间的通信.EventBus以其简单易懂.优雅.开销小等优点而备受欢迎. github 地址:https://github.com/greenrobot/EventBus 1. 使用 1.1 gradle中引入 api 'org.greenrobot:eventbus:3.0.0' 1.2 定义事件 定义一个类作为事件,可以在类中定义不同的参数,发布者赋值,订阅者取值. public class TestEven…