mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 05:13:53 +01:00
* Applied better animation in nearby * Refactor: Reduce Duration of Rotate Animation Decreased the duration of the rotate animation from 1000ms to 500ms in `rotate.xml`, resulting in a faster rotation speed.
10 lines
No EOL
324 B
XML
10 lines
No EOL
324 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<rotate
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:fromDegrees="0"
|
|
android:toDegrees="360"
|
|
android:pivotX="50%"
|
|
android:pivotY="50%"
|
|
android:duration="500"
|
|
android:repeatCount="infinite"
|
|
android:interpolator="@android:anim/linear_interpolator"/> |