特定の高さのテキストビューがあり、そのテキストビュー内に非常に多くの文があります。そのテキストビュー内にスクロールバーを実装して、コンテンツ全体を表示しました。しかし、自動スクロールを実装したいのですが、この自動スクロールを実装する方法がありません。
これが私のxmlレイアウトです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="1"
>
<TextView
android:id="@+id/lyricView"
android:layout_width="fill_parent"
android:layout_height="250dp"
android:width="200dp"
android:textStyle="bold"
android:textColor="#ffffff"
android:gravity="center"
android:maxLines="16"
android:scrollbars = "vertical"
android:paddingTop="8dp"
android:paddingBottom="5dp"
android:layout_marginTop="67dp"
android:background="#80000000"
/>
</LinearLayout>
私の問題を解決するのを手伝ってください。ありがとう。