Мне нужно иметь макет, который имеет вид над набором вкладок. У меня все вкладки работают нормально, но как только я пытаюсь добавить вид за их пределы, у меня остается этот вид без видимых вкладок.
Это прекрасно работает:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabHost
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<LinearLayout ... />
Но это не так:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView ... /> <!-- THIS LINE HERE!!! -->
<TabHost
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<LinearLayout ... />
Что я могу сделать, чтобы мои вкладки сосуществовали с другими представлениями?
Ради полноты моя активность расширяется TabActivity .