Android でのスクロール中に、特定の TableRow の y 座標を追跡する必要があります。誰もそれを行う方法を知っていますか?
背景として、私のコードは正常に動作しています。TableLayout をプログラムで受け入れる xml レイアウトがあります。ここにスニペットがあります
<ScrollView
android:id="@+id/my_scroller"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="50dip"
android:isScrollContainer="false" >
<LinearLayout
android:id="@+id/holder_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
</ScrollView>
繰り返しますが、問題は次のとおりです。AndroidでTableRowオフセットを追跡するにはどうすればよいですか