我如何把android tabactivity放在活动的底部?

时间:2013-11-13 13:31:07

标签: android tabactivity android-tabactivity tabview uitabview

默认情况下,tabactivity位于活动的顶部 我如何把android tabactivity放在活动的底部? (比如ios tabview)

非常感谢 由

1 个答案:

答案 0 :(得分:0)

试试这个:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <FrameLayout
        android:id="@+id/realtabcontent"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1" />

    <android.support.v4.app.FragmentTabHost
        android:id="@android:id/tabhost"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_weight="0" />
    </android.support.v4.app.FragmentTabHost>
</LinearLayout>