0

我想将平滑滚动功能添加到我的应用程序中。即我有一个巨大的文本,我想自动滚动它(就像在图书阅读器中一样)。

谁能提供任何平滑滚动的例子?

4

2 回答 2

4

只需将要滚动的视图放在 ScrollView 中即可。因此,要将一些文本放在滚动区域中,请将文本放在 TextView 中,然后将 TextView 放在 ScrollView 中,如下所示:

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
        <TextView
            android:id="@+id/my_view_id"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
        />
</ScrollView>
于 2010-11-23T18:20:59.427 回答
0

使用反射来更新 ScrollView 的 Scroller:

Field mScroller;
mScroller = ScrollView.class.getDeclaredField("mScroller");
mScroller.setAccessible(true);

CustomScroller scroller = new CustomScroller(getContext(), new AccelerateInterpolator());
mScroller.set(this, scroller);

使用 smoothScrollTo 方法(可能必须 setSmoothScrolligEnabled(true))

于 2013-05-31T22:27:24.980 回答