- 第1章 Android Studio
- 第2章 AndroidManifest.xml
- 第3章 配置文件
- 第4章 UI Layout
- 第5章 Toast
- 第6章 Environment
- 第7章 Schedule 计划任务
- 第8章 Internationalization i18n with Android 国际化
- 第9章 存储
- 第10章 相机与相册
- 第11章 麦克风与录音
- 第12章 多媒体开发
- 第13章 定位
- 第14章 电话
- 第15章 消息广播
- 第16章 Service
- 第17章 NFC Near field communication
- 第18章 OkHttp - An HTTP HTTP/2 client for Android and Java applications
- 第19章 EventBus
- 第20章 设计模式
- 第21章 java.net 介绍和使用
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
19.5. 配置 EventBus
19.5. 配置 EventBus
上面章节中的例子EventBus实例中采用默认方式
EventBus.getDefault().register(this);
这种方式的获取到的EventBus的都是默认属性,有时候并不能满足我们的要求,这时候我们可以通过EventBusBuilder来个性化配置EventBus的属性。
// 创建默认的EventBus对象,相当于EventBus.getDefault()。 EventBus installDefaultEventBus(): // 添加由EventBus“注释预处理器生成的索引 EventBuilder addIndex(SubscriberInfoIndex index): // 默认情况下,EventBus认为事件类有层次结构(订户超类将被通知) EventBuilder eventInheritance(boolean eventInheritance): // 定义一个线程池用于处理后台线程和异步线程分发事件 EventBuilder executorService(java.util.concurrent.ExecutorService executorService): // 设置忽略订阅索引,即使事件已被设置索引,默认为false EventBuilder ignoreGeneratedIndex(boolean ignoreGeneratedIndex): // 打印没有订阅消息,默认为true EventBuilder logNoSubscriberMessages(boolean logNoSubscriberMessages): // 打印订阅异常,默认true EventBuilder logSubscriberExceptions(boolean logSubscriberExceptions): // 设置发送的的事件在没有订阅者的情况时,EventBus是否保持静默,默认true EventBuilder sendNoSubscriberEvent(boolean sendNoSubscriberEvent): // 发送分发事件的异常,默认true EventBuilder sendSubscriberExceptionEvent(boolean sendSubscriberExceptionEvent): // 在3.0以前,接收处理事件的方法名以onEvent开头,方法名称验证避免不是以此开头,启用严格的方法验证(默认:false) EventBuilder strictMethodVerification(java.lang.Class<?> clazz) // 如果onEvent***方法出现异常,是否将此异常分发给订阅者(默认:false) EventBuilder throwSubscriberException(boolean throwSubscriberException)
我的实例参考
EventBus eventBus = EventBus.builder().eventInheritance(true) .ignoreGeneratedIndex(false) .logNoSubscriberMessages(true) .logSubscriberExceptions(false) .sendNoSubscriberEvent(true) .sendSubscriberExceptionEvent(true) .throwSubscriberException(false) .strictMethodVerification(true) .build(); eventBus.register(this);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论