向上滚动时,RecyclerView会跳到顶部

时间:2016-09-05 19:40:51

标签: android mobile android-recyclerview

无论离我的滚动位置有多远,我的recyclerView在向上滚动时都跳到了开头。

1 个答案:

答案 0 :(得分:0)

我意识到我的图像没有像我向上滚动一样快。因此,解决此问题的方法是在我的图像绑定中放置占位符图像。我正在使用Picasso,所以我的适配器中的修复就像这样:

Picasso.with(mContext).load(
        currentMovie.getBaseUrl()+ currentMovie.getPosterPath()
).placeholder(R.drawable.ic_star).into(mPoster);