Skip to content
Advertisement

When calling a method between fragments, must it go through an activity?

I want to open a dialog fragment from A fragment, and pass data to A fragment when the dialog fragment ends.

To do this, I defined an interface in the dialog fragment and implemented it in the A fragment.

The result was that the listener was null.

This is because onAttach() used context and context meant activity.

The activity did not implement the interface.

Of course, it might have been nice to implement the interface in the activity, but I didn’t want it because the method role didn’t match the activity.

Is there no way?

WriteRoutineFragment.java (A Fragment)

JavaScript

DialogFragment.java

JavaScript

Advertisement

Answer

To handle this kind of problem Live Data comes to play. By using Live Data we can pass data between fragments with out any issue. Just create a View Model like below:

JavaScript

And use this View Model in both the fragments in order to get the latest updated value of Live Data.

Using View Model and Live Data in WriteRoutineFragment looks like below:

JavaScript

Using View Model and Live Data in WorkoutListDialogFragment looks like below:

JavaScript
Advertisement