/EventBusSample

Android eventBus library sample

Primary LanguageJava

EventBusSample

Android eventBus library sample

This repo explain how to use EventBus library made by @greenrobot.

Building an Android app that has multiple active components communicating with each other can get tedious. To save time, developers often end up with tightly coupled components in their apps. EventBus is a popular open-source library that was created to solve this problem using the publisher/subscriber pattern.

Using the EventBus library, you can pass messages from one class to one or more classes in just a few lines of code.