2
我在寫一個實現嵌套選項卡的應用程序。由於兩組選項卡佔用相當多的空間,並且通常因爲內容的性質,我想將整個內部TabHost放入可滾動結構中。我可以使外部活動FrameLayout,LinearLayout,甚至ViewFlipper的tabcontent;當我嘗試使它成爲ScrollView時,程序崩潰。Android - TabHost裏面滾動查看
<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喜歡住在不可滾動的框架內。有沒有什麼辦法可以解決這個問題而不會造成一大堆混亂?