搜索内容

包含标签:EventBus 的文章
  • Spring Boot集成EventBus(Guava方式)

    依赖 <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> 配置……

    Joe.Ye 2023-03-27
    0 0
  • Spring Boot + EventBus使用教程

    简介 EventBus是一个基于发布订阅的事件总线,在Java和Android里都可以使用。 EventBus:https://github.com/greenrobot/EventBus 使用 引入pom <depende……

    Joe.Ye 2023-03-27
    0 0
  • EventBus 3.0 在页面间跳转接收不到消息解决方法

    使用EventBus代替广播,intent传递消息等,大大减少了代码量,提升编码速度,同时整体的代码优雅型也得到提高。 使用过程中遇到一些小问题,在当前Activity中……

    Joe.Ye 2023-03-18
    0 1
  • EventBus 3.0 封装

    封装思路 封装一个EventBus工具类,消息类MessageEvent 在BaseActivity中选择注册及接收消息,默认不注册 子Activity继承BaseActivity,如需接收消息,则重写……

    Joe.Ye 2023-03-18
    0 1