gpt4 book ai didi

android - google plus recyclerView滚动动画

转载 作者:行者123 更新时间:2023-11-30 01:13:56 25 4
gpt4 key购买 nike

我想知道如何使用类似 google plus 应用程序的动画来为 recyclerView 设置动画。在这里我有一个答案How to animate recyclerview on scroll like Google plus/Google newsstand?但我对上下文和“最后位置”的事情有疑问,他说做一个字段,但我不知道那是什么意思。

最佳答案

试试这个:

@Override
public void onBindViewHolder(ViewHolder holder, int position) {

//Your content here

setAnimation(holder.itemView);
}


private void setAnimation(ViewHolder holder) {
ObjectAnimator.ofFloat(holder.itemView, "translationX", initialValue, finalValue)
.setDuration(1000)
.start();
}

引用这个link了解更多信息

关于android - google plus recyclerView滚动动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38150684/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com