Android标签从下到上

时间:2013-07-21 21:12:56

标签: android tabs android-tabhost

我遵循了一个教程,我得到了我想要的标签,但它们位于屏幕的底部。

这是我的main.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" >

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="0dip"
            android:layout_weight="1" />

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0" />
    </LinearLayout>

</TabHost>

什么错了?感谢

1 个答案:

答案 0 :(得分:0)

尝试将TabWidget放在XML中的FrameLayout

之前