スクロール ビュー内のテキスト ビューに固定コンテンツがあります。ユーザーが特定の位置にスクロールすると、アクティビティを開始するか、Toast
.
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:id="@+id/scroller">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="fill_parent" android:id="@+id/story"
android:layout_height="wrap_content" android:text="@string/lorem"
android:gravity="fill" />
</LinearLayout>
</ScrollView>
私の問題は、保護されたメソッドを実装しonScrollChanged
てスクロール ビューの位置を見つけることです。
私はこの答えを見つけました。投稿したリンクに見られるように、インターフェイスを宣言したり、スクロールビューをオーバーライドしたりするよりも、これに対する簡単な解決策はありますか?