Last active
July 4, 2021 13:38
-
-
Save ziginsider/50d35277cd23a2917fa52b5129567193 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <animation-list xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:oneshot="false"> | |
| <item | |
| android:drawable="@color/transparent" | |
| android:duration="700" /> | |
| <item | |
| android:drawable="@drawable/circle" | |
| android:duration="700" /> | |
| </animation-list> |
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <shape xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:shape="oval"> | |
| <solid android:color="@color/purple_500" /> | |
| <size | |
| android:width="8dp" | |
| android:height="8dp" /> | |
| </shape> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment