FragmentTabHost 是否需要明确定义 TabWidget
Does FragmentTabHost need TabWidget to be defined explicitly
我正在尝试实现一个带有 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>
我只是按预期看到我的标签。根据 FragmentTabHost 的源代码,如果在视图层次结构中找不到它,它会自行创建 TabWidget。所以我想知道我是否应该在我的布局文件中明确声明 TabWidget。
好吧,您描述的行为没有记录在案,因此如果他们有一天放弃此功能,则有轻微的回归风险。当然,TabWidget
child 也没有记录,因为 FragmentTabHost
的文档很烂。
如果您希望通过 XML 属性对 TabWidget
渲染的某些方面进行声明式控制,您也可以将 TabWidget
放入布局中。
否则,如果默认生成的 TabWidget
适合您,欢迎您使用它。
我正在尝试实现一个带有 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>
我只是按预期看到我的标签。根据 FragmentTabHost 的源代码,如果在视图层次结构中找不到它,它会自行创建 TabWidget。所以我想知道我是否应该在我的布局文件中明确声明 TabWidget。
好吧,您描述的行为没有记录在案,因此如果他们有一天放弃此功能,则有轻微的回归风险。当然,TabWidget
child 也没有记录,因为 FragmentTabHost
的文档很烂。
如果您希望通过 XML 属性对 TabWidget
渲染的某些方面进行声明式控制,您也可以将 TabWidget
放入布局中。
否则,如果默认生成的 TabWidget
适合您,欢迎您使用它。