テレグラム Android アプリのような明確な円形のプログレス バーが必要ですが、プロジェクト ソースで見つけることができません。
そして回転している
更新:私は物質的な進歩を使用していますが、確定モードでは回転しません。ロード中に回転したいのですが...電報アプリと同じです。
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));