discord-jadx/app/src/main/res/anim/anim_typing_dots_scale_down.xml
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

5 lines
684 B
XML

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_decelerate_interpolator" android:fillAfter="true">
<scale android:duration="@integer/animation_time_standard" android:pivotX="50%" android:pivotY="50%" android:fromXScale="@integer/typing_dots_max_scale" android:toXScale="@integer/typing_dots_min_scale" android:fromYScale="@integer/typing_dots_max_scale" android:toYScale="@integer/typing_dots_min_scale"/>
<alpha android:duration="@integer/animation_time_standard" android:fromAlpha="@integer/typing_dots_max_alpha" android:toAlpha="@integer/typing_dots_min_alpha"/>
</set>