如何制作像电报一样的圆形进度条?
How to make a circular progressBar like telegram?
我想要一个确定的循环进度条,比如 telegram android 应用程序,但我在项目源中找不到它。
而且在旋转
更新: 我正在使用 material progress 但它不会在确定模式下旋转,我想要的是在加载时旋转......就像电报应用程序一样。
在 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));
我想要一个确定的循环进度条,比如 telegram android 应用程序,但我在项目源中找不到它。
而且在旋转
更新: 我正在使用 material progress 但它不会在确定模式下旋转,我想要的是在加载时旋转......就像电报应用程序一样。
在 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));