平滑滚动

时间:2010-11-23 18:15:11

标签: android scroll smooth

可能这个问题已得到解答。如果是的话,那么你能指出我正确的方向吗? 我想在我的应用程序中添加平滑滚动功能。 即我有一个巨大的文字,我想自动滚动它(如在书籍阅读器中) 任何人都可以提供平滑滚动的任何例子吗?

由于

2 个答案:

答案 0 :(得分:4)

只需将要滚动的视图放在ScrollView中即可。因此,要将一些文本放在滚动区域中,将文本放在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>

答案 1 :(得分: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))