我有一个正在构建的应用程序,并希望在用户正在阅读的文本视图中自动滚动文本,我想给它一个滚动的步伐,如何我在这里实现它是我的代码
<ScrollView
android:layout_width="wrap_content"
android:padding="10dp"
android:id="@+id/contentScroll"
android:background="#e2d0d0"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:id="@+id/tvAutoScroll"
android:layout_height="wrap_content"
android:text="this is the text in a text view how do I make it auto scroll from top to bottom when a user is reading"
/>
</ScrollView>