Android - TabHost внутри ScrollView - PullRequest
       17

Android - TabHost внутри ScrollView

2 голосов
/ 27 января 2011

Я пишу приложение, которое реализует вложенные вкладки. Поскольку два набора вкладок занимают довольно мало места и, как правило, из-за характера содержимого, я хотел бы поместить весь внутренний TabHost в прокручиваемую структуру. Я могу сделать tabcontent внешней активности FrameLayout, LinearLayout, даже ViewFlipper; когда я пытаюсь сделать это ScrollView, программа вылетает.

<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:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
        <ScrollView
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>
    </LinearLayout>

</TabHost>

Так что, очевидно, TabHost любит жить внутри не прокручиваемых фреймов. Есть ли способ обойти это без создания большого беспорядка?

1 Ответ

3 голосов
/ 27 января 2011

Извините, я понял это самостоятельно. Решение состоит в том, чтобы обернуть второй TabHost внутри ScrollView в его собственный XML-файл. Это прекрасно работает.

Внешний:

<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:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>
    </LinearLayout>

</TabHost>

Внутренний:

<ScrollView
    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">

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" />
            <ViewFlipper
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"/>
        </LinearLayout>

    </TabHost>

</ScrollView>
...