Tag: EventBus

  • Ease Communication Between Activities, Fragments, and Services

    Ease Communication Between Activities, Fragments, and Services

    Ease communication between Activities, Fragments, Dialogs, Services, AsyncTaks, and Life Cycles of Anything by using event bus in Android. Event bus is an implementation of publish/subscribe pattern which is a messaging system between a subscriber and a publisher. A subscriber waits for an event to be dispatched from a publisher. In this article I will describe…