Last active
February 15, 2022 03:08
-
-
Save ishitcno1/9966922 to your computer and use it in GitHub Desktop.
Android animated-rotate.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical"> | |
<ProgressBar | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_gravity="center" | |
android:indeterminate="true" | |
android:indeterminateDrawable="@drawable/loading" /> | |
</LinearLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android" | |
android:drawable="@drawable/ic_loading" | |
android:pivotX="50.0%" | |
android:pivotY="50.0%" | |
android:fromDegrees="0.0" | |
android:toDegrees="360.0" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you share the code for @drawable/ic_loading or share what kind of image does that file hold?