2011-08-05 148 views
0

我有三個選項卡的TabHost。其中一個選項卡包含ListActivity。我希望所有三個選項卡都可以滾動。起初,我把FrameLayout(tabcontent)放在ScrollView中,但我不能把ListActivity放在ScrollView中,所以我爲每個選項卡添加了ScrollView(第三個ListActivity除外)。現在滾動僅適用於第二個選項卡。當我試圖滾動第一個滾動條正在移動,但內容不是。它看起來像只有ScrollView包含第二個選項卡有焦點,即使我在第一個選項卡上。TabHost與滾動視圖中的標籤 - 滾動只適用於一個標籤

我的佈局:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:background="@color/black"> 

    <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" 
      android:padding="5dp"> 
      <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"> 
       <!-- TAB1 --> 
       <ScrollView 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"> 
        <LinearLayout 
         android:id="@+id/tab1Layout" 
         android:orientation="vertical" 
         android:layout_width="fill_parent" 
         android:layout_height="fill_parent" 
         android:padding="5dp"> 
         <TextView 
          anddroid:id="@+id/textview11" 
          android:layout_width="fill_parent" 
          android:layout_height="wrap_content" /> 
         <TextView 
          anddroid:id="@+id/textview12" 
          android:layout_width="fill_parent" 
          android:layout_height="wrap_content" /> 
         <TextView 
          anddroid:id="@+id/textview13" 
          android:layout_width="fill_parent" 
          android:layout_height="wrap_content" /> 
         <TextView 
          anddroid:id="@+id/textview14" 
          android:layout_width="fill_parent" 
          android:layout_height="wrap_content" /> 
          <!-- FEW MORE TEXTVIEWS --> 
        </LinearLayout> 
       </ScrollView> 
       <!-- TAB 2 --> 
       <ScrollView 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"> 
        <LinearLayout 
         android:id="@+id/tab2Layout" 
         android:orientation="vertical" 
         android:layout_width="fill_parent" 
         android:layout_height="fill_parent" 
         android:padding="5dp"> 
         <TextView 
          anddroid:id="@+id/textview21" 
          android:layout_width="fill_parent" 
          android:layout_height="wrap_content" /> 
         <TextView 
          anddroid:id="@+id/textview22" 
          android:layout_width="fill_parent" 
          android:layout_height="wrap_content" /> 
         <TextView 
          anddroid:id="@+id/textview23" 
          android:layout_width="fill_parent" 
          android:layout_height="wrap_content" /> 
         <TextView 
          anddroid:id="@+id/textview24" 
          android:layout_width="fill_parent" 
          android:layout_height="wrap_content" /> 
          <!-- FEW MORE TEXTVIEWS --> 
        </LinearLayout> 
       </ScrollView> 
       <!-- TAB3 --> 
       <!-- ListActivity here --> 
      </FrameLayout> 
     </LinearLayout> 
    </TabHost> 
</LinearLayout> 

回答

1

這是不是這樣的

你不能把一個單獨的滾動型或標籤 的TabWidget它自身含有標籤和內容您可以使用FramLayout 任何視圖並且此FramLayout將包含您想要通過單擊Tab打開的活動。