私はこのようなレイアウトを持っています -
<RelativeLayout
android:id="@+id/relativeLayoutTable"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_below="@+id/relativeLayout215"
android:layout_toRightOf="@+id/relativeLayout20" >
<ScrollView
android:id="@+id/scrollView"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:scrollbars="horizontal|vertical"
android:fillViewport="true"
android:scrollbarStyle="insideOverlay">
<HorizontalScrollView
android:id="@+id/horizontalScrollView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbarStyle="insideOverlay" >
<TableLayout
android:id="@+id/tableLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center" />
</HorizontalScrollView>
</ScrollView>
</RelativeLayout>
テーブルレイアウトは、プログラムで作成されたセル/ビューで構成されています。各セル/ビューに対して onClicklistener を定義しました。ここで、scrollView の onTouchlistener も定義しました。セル/ビューのクリック イベントは取得できますが、scrollView で ACTION_POINTER_DOWN イベントを取得できません。助けてください。ありがとう。