Я пытаюсь реализовать Activity с 3 вкладками на нем. Я решил использовать FragmentTabHost для этой цели. Я нашел несколько примеров кода с следующий файл макета:Does FragmentTabHost нужно, чтобы 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">
<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 и FragmentTabHost не содержит некоторых деталей. –