码迷,mamicode.com
首页 >  
搜索关键字:eventbus    ( 401个结果
android事件总线(eventbus)设计与实现
1. 功能介绍AndroidEventBus是一个Android平台的事件总线库, 它简化了Activity、Fragment、Service等组件或者对象之间的交互,很大程度上降低了它们之间的耦合,使得我们的代码更加简洁,耦合性更低,提升我们的代码质量。AndroidEventBus吸收了gree... ...
分类:移动开发   时间:2016-10-02 00:12:46    阅读次数:261
EventBus 知识点总结
随着RxJava 的火爆,RxBus 相对来说比较配套,我不知道还会不会用eventBus 但是谁知道呢,总结一下备忘还是不错的选择。 http://greenrobot.org/eventbus/ 使用eventBus的好处 EventBus:活动为Android EventBus是使用Andro ...
分类:其他好文   时间:2016-09-28 02:21:27    阅读次数:154
EventBus Usage
EventBusisapublish/subscribeeventbusoptimizedforAndroid.somakeitsimple,justthinkEventBusasaframeworkthatallowdifferentcompoentstocommunicate,usuallyasubscriberegisteracertainevent,thenwheneverapublisherhaspostanevent,anysubscribeswhohadregisterthiseventwill..
分类:其他好文   时间:2016-09-22 07:45:17    阅读次数:322
update github project
whenforkother‘sprojectingithub,toobtainthenewestversion,youneedtodo:cloneyourforkprojectintolocalpath:gitclonehttps://github.com/your_github/EventBus.gittrygitremove-v,ifyoucanonlyseeyourselforigin(fetch/push),thenyouhavetoaddthemanrepomanually:gitremoteadd..
分类:其他好文   时间:2016-09-22 07:45:03    阅读次数:189
76.Android之EventBus源码解析
转载:http://p.codekk.com/blogs/detail/54cfab086c4761e5001b2538 1. 功能介绍 1.1 EventBus EventBus 是一个 Android 事件发布/订阅框架,通过解耦发布者和订阅者简化 Android 事件传递,这里的事件可以理解为 ...
分类:移动开发   时间:2016-09-20 18:05:05    阅读次数:227
guava中eventbus注解使用
guava是 google 几个java核心类库的集合,包括集合、缓存、原生类型、并发、常用注解、基本字符串操作和I/O等等。学会使用该库相关api的使用,能使我们代码更简洁,更优雅,本章节我们来谈谈guava中注解的应用: 第一步:定义一个注解类,用来标示订阅: 1 @Beta 2 @Target ...
分类:其他好文   时间:2016-09-19 01:15:24    阅读次数:277
EventBus
EventBus is a publish/subscribe event bus optimized for Android. EventBus... simplifies the communication between components decouples event senders a ...
分类:其他好文   时间:2016-09-14 14:07:41    阅读次数:133
EventBus简单的实现
EventBus是最近项目用到的,也只是会些简单的功能,不过感觉功能蛮强大的。代码链接:http://download.csdn.net/detail/qq_29774291/9629346 EventBus是Guava的事件处理机制,是设计模式中的观察者模式(生产/消费者编程模型)的优雅实现。主要 ...
分类:其他好文   时间:2016-09-14 12:12:26    阅读次数:218
EventBus的使用
Android APP当中可以用于传递消息的有广播、Intent、Handle等,使用EventBus可以取代它们的一些功能,而且使得代码非常的简明优雅。 导入EventBus的包之后,便可以使用了,使用方法如下 发送消息 Object obj = new Object() EventBus.get... ...
分类:其他好文   时间:2016-09-13 20:32:38    阅读次数:230
EventBus 事件总线 原理
原理一句话描述:register会把当前类中匹配的方法,存入一个map,而post会根据实参去map查找进行反射调用撇开专业术语,其实EventBus就是在内部【存储】了一堆onEvent开头的方法,然后post的时候,根据post传入的【参数】,去找到匹配的方法,【反射】调用之。另外,它内部使用了... ...
分类:其他好文   时间:2016-09-07 19:11:26    阅读次数:263
401条   上一页 1 ... 18 19 20 21 22 ... 41 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!