1. 程式人生 > >EventBus學習與進階

EventBus學習與進階

初次看到這個庫,覺得有點似曾相識,自己目前在用的一種通訊方式恰恰擁有這個庫的簡單功能,上手很快。
github地址:https://github.com/greenrobot/EventBus
文件寫的太簡單,有大神總結好的使用方法和翻譯如下:
快速Android開發系列通訊篇之EventBus
EventBus使用詳解(一)——初步使用EventBus
EventBus使用詳解(二)——EventBus使用進階
Android EventBus原始碼解析 帶你深入理解EventBus
下面寫點自己的一些學習過程,自己做個記錄,順便學習下別人怎麼開源和怎麼寫介紹之類的,還有補補英文,大家不用看,上面幾個連結裡,大神寫的很好了。
首先看了下官網:

http://greenrobot.org/eventbus/
這個開源專案是德國慕尼黑的greenrobot團隊做的。
EventBus is an open-source library for Android using the publisher/subscriber pattern for loose coupling. EventBus enables central communication to decoupled classes with just a few lines of code – simplifying the code, removing dependencies, and speeding up app development.
使用釋出-訂閱模式用來解耦程式碼的一個開源庫,目的就是解耦和加速app開發。
EventBus: Events for Android