I have this basic XML layout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.viewpagerindicator.TitlePageIndicator
android:id="@+id/titles"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#222" />
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
Using three Fragments that swipe back and forth. However, I need to do some FragmentTransaction's and I believe best way is to hard code Frame's into the Layout. How I would I make each Tab a FrameLayout under a ViewPager?
Note: Each Fragment is actually a swipable tab with ActionBar tab's. So I need each tab, really, to be replaceable in the Transactions.