FragmentTabHost是否需要显式定义TabWidget

时间:2016-06-05 21:27:34

标签: android android-support-library android-tabs

我正在尝试使用3个标签实现一个Activity。我决定将FragmentTabHost用于此目的。我找到了一些代码示例,其中包含以下布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <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="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"/>
    </android.support.v4.app.FragmentTabHost>

    <FrameLayout 
        android:id="@+id/realtabcontent"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />      
</LinearLayout>

但是当我知道以前的代码示例在没有TabWidget的情况下以相同的方式工作时,我感到很惊讶:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

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

    <FrameLayout 
        android:id="@+id/realtabcontent"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />

</LinearLayout>

我只是按预期看到我的标签。根据{{​​3}}的源代码,如果在视图层次结构中找不到TabWidget,它会自动创建TabWidget。所以我想知道我是否应该在我的布局文件中明确声明TabWidget。

1 个答案:

答案 0 :(得分:1)

嗯,您描述的行为没有记录,因此如果有一天他们放弃此功能,则存在轻微的回归风险。当然,由于TabWidget的文档很糟糕,因此FragmentTabHost子项也没有记录。

如果您希望通过XML属性对TabWidget渲染的某些方面进行声明控制,也可以将TabWidget放在布局中。

否则,如果默认生成的TabWidget适合您,欢迎您使用它。