全方向にスクロール可能な TableLayout を作成しました。固定ヘッダーを作成するために、追加の TableLayout を作成しました。これで、2 つのスクロール可能な 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>