文件名称:EventBus-master
- 所属分类:
- 其他小程序
- 资源属性:
- [Android] [Java] [源码]
- 上传时间:
- 2014-07-14
- 文件大小:
- 771kb
- 下载次数:
- 0次
- 提 供 者:
- osama ******
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
EventBus is an Android optimized publish/subscribe event bus. A typical use case for Android apps is gluing Activities, Fragments, and background threads together. Conventional wiring of those elements often introduces complex and error-prone dependencies and life cycle issues. With EventBus propagating listeners through all participants (e.g. background service -> activity -> multiple fragments or helper classes) becomes deprecated. EventBus decouples event senders and receivers and thus simplifies communication between app components. Less code, better quality. And you don t need to implement a single interface!
(系统自动生成,下载前可以参看下载内容)
下载文件列表
EventBus-master
...............\.gitignore
...............\.travis.yml
...............\EventBus
...............\........\.classpath
...............\........\.project
...............\........\AndroidManifest.xml
...............\........\build.gradle
...............\........\libs
...............\........\....\android-support-v4.jar
...............\........\mybuild.xml
...............\........\project.properties
...............\........\res
...............\........\...\values
...............\........\...\......\strings.xml
...............\........\settings.gradle
...............\........\src
...............\........\...\de
...............\........\...\..\greenrobot
...............\........\...\..\..........\event
...............\........\...\..\..........\.....\AsyncPoster.java
...............\........\...\..\..........\.....\BackgroundPoster.java
...............\........\...\..\..........\.....\EventBus.java
...............\........\...\..\..........\.....\EventBusException.java
...............\........\...\..\..........\.....\HandlerPoster.java
...............\........\...\..\..........\.....\NoSubscriberEvent.java
...............\........\...\..\..........\.....\PendingPost.java
...............\........\...\..\..........\.....\PendingPostQueue.java
...............\........\...\..\..........\.....\SubscriberExceptionEvent.java
...............\........\...\..\..........\.....\SubscriberMethod.java
...............\........\...\..\..........\.....\SubscriberMethodFinder.java
...............\........\...\..\..........\.....\Subscription.java
...............\........\...\..\..........\.....\ThreadMode.java
...............\........\...\..\..........\.....\util
...............\........\...\..\..........\.....\....\AsyncExecutor.java
...............\........\...\..\..........\.....\....\ErrorDialogConfig.java
...............\........\...\..\..........\.....\....\ErrorDialogFragmentFactory.java
...............\........\...\..\..........\.....\....\ErrorDialogFragments.java
...............\........\...\..\..........\.....\....\ErrorDialogManager.java
...............\........\...\..\..........\.....\....\ExceptionToResourceMapping.java
...............\........\...\..\..........\.....\....\HasExecutionScope.java
...............\........\...\..\..........\.....\....\ThrowableFailureEvent.java
...............\EventBusPerformance
...............\...................\.classpath
...............\...................\.gitignore
...............\...................\.project
...............\...................\.settings
...............\...................\.........\org.eclipse.jdt.core.prefs
...............\...................\AndroidManifest.xml
...............\...................\libs
...............\...................\....\android-support-v4.jar
...............\...................\....\eventbus.jar
...............\...................\....\square-otto-1.3.1.jar
...............\...................\proguard-project.txt
...............\...................\project.properties
...............\...................\res
...............\...................\...\drawable-hdpi
...............\...................\...\.............\ic_launcher.png
...............\...................\...\drawable-ldpi
...............\...................\...\.............\ic_launcher.png
...............\...................\...\drawable-mdpi
...............\...................\...\.............\ic_launcher.png
...............\...................\...\drawable-xhdpi
...............\...................\...\..............\ic_launcher.png
...............\...................\...\layout
...............\...................\...\......\activity_runtests.xml
...............\...................\...\......\activity_setuptests.xml
...............\...................\...\values
...............\...................\...\......\strings.xml
...............\...................\src
...............\...................\...\de
...............\...................\...\..\greenrobot
...............\...................\...\..\..........\eventperf
...............\...................\...\..\..........\..