android– 禁用暂停RecyclerView动画和或滚动时只允许RecyclerView动画

android– 禁用暂停RecyclerView动画和或滚动时只允许RecyclerView动画,第1张

概述所以基本上,我有一个简单的RecyclerView.Adapter,我有这样的事情:publicvoidonBindViewHolder(ViewHolderviewHolder,intposition){finalSessioncurrentSession=sessionList.get(position);viewHolder.textTittle.setText(currentSession.getTitle());v

所以基本上,我有一个简单的RecyclerVIEw.Adapter,我有这样的事情:

public voID onBindVIEwHolder(VIEwHolder vIEwHolder, int position) {    final Session currentSession = sessionList.get(position);    vIEwHolder.textTittle.setText(currentSession.getTitle());    vIEwHolder.textStartEnd.setText(currentSession.getStartHour() + " - " + currentSession.getEndHour());    vIEwHolder.textDate.setText(currentSession.getDateFormatedString());    vIEwHolder.textTrack.setText(currentSession.getTrack());    vIEwHolder.textRoom.setText(currentSession.getRoom());    if (position > this.lastposition) {        animate(vIEwHolder, true);    } else {        animate(vIEwHolder, false);    }    this.lastposition = position;    vIEwHolder.setClickListener(clickListener, currentSession);}

当我向上/向下滚动时动画很好但是当我更改所有数据甚至加载RecyclerVIEw(包含CardVIEws列表)时,动画显得非常混乱.
我在尝试更改所有数据时暂时禁用动画,或者在我向上滚动CardVIEw列表时启用动画.

你知道怎么做吗?

谢谢.

解决方法:

RecyclerVIEw内置了动画支持,但在滚动时它不支持动画.

看起来你自己动画,在这种情况下(假设你不想添加/删除/更改动画)只需将ItemAnimator设置为null. (RecyclerVIEw#setItemAnimator).

您添加的这些自定义动画将导致回收问题,因此您还应实现onFailedToRecycle. https://developer.android.com/reference/android/support/v7/widget/RecyclerView.Adapter.html#onFailedToRecycleView(VH)

总结

以上是内存溢出为你收集整理的android – 禁用/暂停RecyclerView动画和/或滚动时只允许RecyclerView动画全部内容,希望文章能够帮你解决android – 禁用/暂停RecyclerView动画和/或滚动时只允许RecyclerView动画所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1107897.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存