我创建了一个可在所有方向上滚动的TableLayout。为了创建一个固定标题,我创建了一个额外的TableLayout。现在我有2个Scrollable TableLayouts。
但是当我滚动1个TableLayout时,另一个TableLayout不滚动。如何让它们同步滚动?
这是我的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TwoDScrollView android:id="@+id/Scroll"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableLayout android:id="@+id/TableLayoutHours"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="0"/>
</TwoDScrollView>
<TwoDScrollView android:id="@+id/Scroll2"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableLayout android:id="@+id/TableLayoutLineUp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="0"/>
</TwoDScrollView>
</LinearLayout>