19

I have created one Activity (DemoActivity.java) with 2 Fragments (FragmentOne.java and FragmentTwo.java).

I registered the EventBus in the Activity like thisEventBus.getDefault().register(this);

and created one Suscriber method in the Activity:

@Subscriber
public void abc(String str) {
    Log.i(TAG,"MainActivity Called !!");
}

Then I post an event from FragmentTwo.java on button click EventBus.getDefault().post("");

This scenario works fine for me. But when I create the same subscriber method in FragmentOne.java it is not working. Why?

Willi Mentzel
  • 27,862
  • 20
  • 113
  • 121
sanil
  • 482
  • 1
  • 7
  • 23

3 Answers3

17

From your question there might be two things that are causing the issue:

  1. You might have not registered the EventBus in your FragmentOne class like you did for your DemoActivity class.
  2. If you have registered the EventBus in the FragmentOne class then please check if FragmentOne fragment class is alive and in state to receive the event while posting the event from FragmentTwo class.

Edit

As seen from comments you have registered your EventBus as EventBus.getDefault().register(getActivity()) due to this only your Activity will get registered. To register your Fragment use EventBus.getDefault().register(this) in your Fragment.onCreate() method.

Nitin Joshi
  • 240
  • 2
  • 7
9

Use Sticky Events for fragment. Because fragments are loaded multiple offsets some time.

Register and unregister your Eventbus:

 @Override
public void onStart() {
    Log.d(TAG, "Register ");
    EventBus.getDefault().register(this);
    super.onStart();
}

@Override
public void onStop() {
    super.onStop();
    Log.d(TAG, "Unregister");
    EventBus.getDefault().unregister(this);
}

OnChildChange.class post event with .postSticky():

EventBus.getDefault().postSticky(new OnChildChange(position));

Subscribe EventBus with sticky = true:

@Subscribe(sticky = true, threadMode = ThreadMode.MAIN)
public void onCategoryChangeEvent(OnChildChange event){
    // get the event and remove drom sticky
    OnChildChange stickyEvent = EventBus.getDefault().removeStickyEvent(OnChildChange.class);

    if(stickyEvent != null) {
        // apply your logic or call methods 
    }

}
Md Imran Choudhury
  • 9,343
  • 4
  • 62
  • 60
0

You have to Register EventBus at OnStart() in fragment.

  override fun onStart() {
    super.onStart()
    EventBus.getDefault().register(this)
}
tej shah
  • 2,995
  • 2
  • 25
  • 35