0
我在我的FragmentActivity佈局中有一個FragmentTabHost。FragmentTabHost TabStrip頂部
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/llDetector"
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" >
<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="0dp"
android:layout_height="0dp"
android:layout_weight="0" />
</android.support.v4.app.FragmentTabHost>
</LinearLayout>
它的工作不錯,但我希望我的標籤欄是在tabwidget的頂部。我怎樣才能做到這一點?提前致謝!