如何在android开发中以一定的时间间隔自动滚动textview

时间:2016-08-23 14:54:21

标签: android

我有一个正在构建的应用程序,并希望在用户正在阅读的文本视图中自动滚动文本,我想给它一个滚动的步伐,如何我在这里实现它是我的代码

  <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>

0 个答案:

没有答案