2012-03-25 40 views
0

Outline如何創建ScrollView以覆蓋2個TableLayout?

我知道ScrollView只能有一個孩子,但在我的情況下,我需要有2個使用相同滾動的TableLayout。使用LayoutView包內2 TableLayout像下面樣我沒試過...但它在第一TableLayout

<ScrollView 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content"> 
     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content"> 
      <TableLayout 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content"> 
       //... 
      </TableLayout> 
      <TableLayout 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content"> 
       //... 
      </TableLayout> 
     </LinearLayout> 
    </ScrollView> 

回答

3

它看起來像你想有一個垂直滾動列表僅顯示視圖。包裝兩個表應該可以工作,但LinearLayout默認爲水平方向。所以添加android:orientation="vertical"到包裝LinearLayout

+0

它的工作原理!非常感謝你:) – 2012-03-25 10:55:21

+0

它的作品,但不接受?!爲什麼? – AliSh 2012-03-25 11:05:55

+1

@AliSh在第一次我嘗試接受,但有一個警告對話框,「你可以在9分鐘後接受這個問題」,所以我出去吃晚飯抱歉..遲到接受 – 2012-03-25 15:09:55