EventBus is an Android optimized publish/subscribe event bus that simplifies communication between Activities, Fragments, Threads, Services, etc.
I'm creating an Android application using EventBus for posting asynchronous broadcasts to other classes, but I'm running into an error …
android event-bus greenrobot-eventbusI have an activity, its layout contains a FrameLayout. I use the framelayout as a fragment container. I replace the …
android android-fragments greenrobot-eventbusIn most of the case, when dealing with case User thread (AsyncTask) to perform background processing Pass back calculated result …
android android-asynctask event-bus otto greenrobot-eventbusI have a MainActivity and a Service in my android app. I have registered both to the EventBus and when …
greenrobot-eventbusEventBus Can I use this library for Activity to Service communication ? I have tried this in my app as follows: @…
android android-activity android-service greenrobot-eventbusI use greenrobot EventBus library to send data between two fragments in my android app and I want to know …
android event-bus greenrobot-eventbusWhat is the best place to register and unregister to an event bus (like otto, EventBus, or tinybus) in an …
android otto greenrobot-eventbusI am using EventBus to communicate from a long running thread to Fragments that update their UI. This long running …
java android multithreading android-fragments greenrobot-eventbusI'm trying to get the positions from my WS and update my markers in my GoogleMap fragment so what I'm …
android google-maps android-fragments greenrobot-eventbusI've just started looking at GreenRobot's EventBus for Android and have a question about threading. I have a long-running process …
android greenrobot-eventbus