I have this interface in my activity.
public interface LogoutUser { void logout(); }
My fragment implements this interface, so in my fr
Android Fragments - Communicating with Activity
You need to get a reference to your fragment with getFragmentById() or getFragmentByTag()
getFragmentById()
getFragmentByTag()
getFragmentManager().findFragmentById(R.id.example_fragment);