I have textview with specific height and i have so many sentences within that textview. I have implemented scrollbar within that textview to see whole content. But i want to implement auto scroll and i am not getting the way to implement this auto scroll.
Here is my xml Layout :
<?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>
Please help me to solve my problem. Thanx.