gpt4 book ai didi

android - 带有imageview的自定义进度条

转载 作者:行者123 更新时间:2023-11-29 02:06:03 26 4
gpt4 key购买 nike

我想通过 ImageView 自定义我自己的进度条。我想在循环中每秒更改 ImageView 25 次以创建动态图像。如何切换图像?

最佳答案

您可能只使用普通的 progressBar 就可以做到这一点 - 在您的 drawables 文件夹中设置一个 animationDrawable,如下所示:(取自 android docs on animationDrawables)。

<!-- Animation frames are wheel0.png -- wheel5.png files inside the
res/drawable/ folder -->
<animation-list android:id="selected" android:oneshot="false">
<item android:drawable="@drawable/wheel0" android:duration="50" />
<item android:drawable="@drawable/wheel1" android:duration="50" />
<item android:drawable="@drawable/wheel2" android:duration="50" />
<item android:drawable="@drawable/wheel3" android:duration="50" />
<item android:drawable="@drawable/wheel4" android:duration="50" />
<item android:drawable="@drawable/wheel5" android:duration="50" />
</animation-list>

然后在你的代码某处做:

AnimationDrawable progress = (AnimationDrawable) mProgressBar.getProgressDrawable();
progress.start();

免责声明 - 我没有对此进行测试,但我不明白为什么它不起作用。

关于android - 带有imageview的自定义进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9966512/

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