像Pinterest应用程序一样在RecycleView中平滑滚动

时间:2015-03-04 06:05:15

标签: android android-recyclerview smooth-scrolling

我想在回收视图中应用平滑滚动,如Pinterest Application

RecyclerView my_view = (RecyclerView) v.findViewById(R.id.grid);
        my_view.setHasFixedSize(true);

    StaggeredGridLayoutManager  mLayoutManager = new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);
        my_view.setLayoutManager(mLayoutManager);

现在我使用了这段代码。

现在RecyclerView滚动太快了。我想减慢滚动速度,这样用户实际上可以顺利滚动。

0 个答案:

没有答案