gpt4 book ai didi

android - Google Plus 磁贴动画

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:01:47 25 4
gpt4 key购买 nike

我想弄清楚如何制作与 Google plus 时间轴 View 中类似的布局。在时间轴中滚动时有一个动画,我真的很喜欢它。知道怎么做吗?

enter image description here

最佳答案

您需要为 View 设置一个 TranslateAnimation,这将为您解决问题。

TranslateAnimation translateAnim = new TranslateAnimation(200, 0, 0, 0 );
//Use (0, 0, 200, 0 ) if you would like to animate this in a mobile device rather than a tab
listView.clearAnimation();
translateAnim.setDuration(500);
translateAnim.setFillBefore(true);
listView.startAnimation(translateAnim);

希望这有帮助:)

关于android - Google Plus 磁贴动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12109942/

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