0
如何創建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>
它的工作原理!非常感謝你:) – 2012-03-25 10:55:21
它的作品,但不接受?!爲什麼? – AliSh 2012-03-25 11:05:55
@AliSh在第一次我嘗試接受,但有一個警告對話框,「你可以在9分鐘後接受這個問題」,所以我出去吃晚飯抱歉..遲到接受 – 2012-03-25 15:09:55