I am working on an Android App and I have used android FragmentPager tabs example from developer.android.com), this example uses fragments for tabs contents, Now I want to p
Have you seen this? I've referenced it a few times, should help you out.
http://thepseudocoder.wordpress.com/2011/10/04/android-tabs-the-fragment-way/
Now you can use FragmentTabHost
This can also be used inside of a fragment through fragment nesting
http://developer.android.com/reference/android/support/v4/app/FragmentTabHost.html
I face the same problem we. We cannot open a fragment or activity in another tab.(We an but it will open in the same tab). So i am use to the below code to change the tab.
MainActivity.tabHost.setCurrentTab(tabIndex);
Its open the tab with the main tab page.