I Removed all needed class that are replaced by lib classes I updated the manifest I updated from a tabactivity to a fragment activity, implmenting a tab host controlling fragments Change-Id: I2ab2eb548c122f3fe1afbce1fdd6e5bad448a724 Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
31 lines
1012 B
XML
31 lines
1012 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@android:id/tabhost"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical"
|
|
android:padding="5dp" >
|
|
|
|
<TabWidget
|
|
android:id="@android:id/tabs"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<FrameLayout
|
|
android:id="@android:id/tabcontent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:padding="5dp" >
|
|
|
|
<android.support.v4.view.ViewPager
|
|
android:id="@+id/pager"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" />
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
|
|
</TabHost> |