gpt4 book ai didi

android - 如何制作像 Telegram 一样的循环进度条?

转载 作者:行者123 更新时间:2023-12-04 15:21:03 27 4
gpt4 key购买 nike

我想要一个确定的圆形进度条,例如 Telegram android 应用程序,但我在项目源中找不到它。

enter image description here

它正在旋转

enter image description here

更新:我正在使用 material progress但它不会在确定模式下旋转,我想要的是在加载时旋转......就像 Telegram 应用程序一样。

最佳答案

在 res/anim 文件夹中创建一个 rotate.xml:

<?xml version="1.0" encoding="UTF-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="1600"
android:fromDegrees="0"
android:interpolator="@android:anim/linear_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:toDegrees="360" />
加载动画并在代码中运行:
view.startAnimation(AnimationUtils.loadAnimation(activity, R.anim.rotate));

关于android - 如何制作像 Telegram 一样的循环进度条?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31177167/

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