diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2020-04-19 02:17:27 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2020-04-19 02:17:27 +0530 |
commit | cfb7f1b0161778ce86c6fcd496bb3417ff30c17b (patch) | |
tree | c92b9878a342ad5efdfcb147e7199ae4624d6d76 | |
parent | 33e07628db33346b42bbbcc7785b604fedb62809 (diff) |
ui: tweak fab animation duration
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
-rw-r--r-- | ui/src/main/res/anim/scale_down.xml | 2 | ||||
-rw-r--r-- | ui/src/main/res/anim/scale_up.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/main/res/anim/scale_down.xml b/ui/src/main/res/anim/scale_down.xml index 2b5f1b74..b6ece430 100644 --- a/ui/src/main/res/anim/scale_down.xml +++ b/ui/src/main/res/anim/scale_down.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" > <scale - android:duration="400" + android:duration="300" android:fromXScale="1.0" android:fromYScale="1.0" android:interpolator="@android:anim/linear_interpolator" diff --git a/ui/src/main/res/anim/scale_up.xml b/ui/src/main/res/anim/scale_up.xml index 65a00c07..07dd5787 100644 --- a/ui/src/main/res/anim/scale_up.xml +++ b/ui/src/main/res/anim/scale_up.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" > <scale - android:duration="400" + android:duration="300" android:fromXScale="0" android:fromYScale="0" android:interpolator="@android:anim/linear_interpolator" |