I\'ve read around that nesting Fragments should be avoided (eg. here), but I can\'t see how to do the following:
I\'m working on a tab application (android:min
You can use ViewPager and the FragmentPagerAdapter for this. ViewPager allows users to swipe between views or (in your case) Fragments. To show tablike-controls, use ViewPagerIndicator.
Using the layout you described, instead of loading a Fragment into the FrameLayout, inflate it with a layout like this:
Next, assign a FragmentPagerAdapter to your ViewPager, which will then load your Fragments.
Also take a look at my answer here. It gives a more detailed example. Note however that it extends PagerAdapter, instead of the FragmentPagerAdapter you should be using.