gpt4 book ai didi

android - 在 actionbar customview imagebutton 中刷新动画

转载 作者:行者123 更新时间:2023-11-29 17:27:32 24 4
gpt4 key购买 nike

我根据演示创建了一个应用程序。该应用程序启用了操作栏。它在顶部包含自定义 View ,在底部包含 Action View 项目。在顶部自定义 View 中,有一个图像按钮。单击图像按钮时,我想要圆角动画(刷新动画)。有什么解决办法吗?

最佳答案

终于找到解决办法了

imageButton = (ImageButton) mCustomView.findViewById(R.id.imageButton);

动画开始

RotateAnimation rotate = new RotateAnimation(0,360,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotate.setDuration(1000);
rotate.setRepeatCount(Animation.INFINITE);
rotate.setRepeatMode(Animation.INFINITE);
rotate.setInterpolator(new LinearInterpolator());
imageButton.startAnimation(rotate);

动画停止

imageButton.clearAnimation();

关于android - 在 actionbar customview imagebutton 中刷新动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34132097/

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