I have a couple of fragments being held inside a ViewPager contained in an fragment. How do I go about implementing the "Up Button" in this situation? I've been unsuccessful since I can't even make the Up button functionality appear on the screen.
The structure is the following:
Activity_One hosts a FragmentWithViewPager with two fragments in it (Fragment_One and Fragment_Two). I need to press an Up button to remove the FragmentWithViewPager and its contained fragments so that the user can go to whatever is in the backstack.
I hope this is clear. Any detailed information on what methods I should implement and at what location would be greatly appreciated.