ネストされたタブを実装するアプリを作成しています。2 セットのタブがかなりのスペースを占めるため、一般的にコンテンツの性質上、内部の TabHost 全体をスクロール可能な構造に配置したいと考えています。外部アクティビティ 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 は、スクロールできないフレーム内に住むのが好きです。混乱を招くことなく、これを回避する方法はありますか?