summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/animator/settings_exit.xml
blob: a233b6757f6467e5e6cbb1d7c4850cef0847fad4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">

    <objectAnimator
        android:duration="@android:integer/config_mediumAnimTime"
        android:interpolator="@android:interpolator/accelerate_cubic"
        android:propertyName="visibleness"
        android:valueFrom="1.0f"
        android:valueTo="0.6f"
        android:valueType="floatType" />

    <objectAnimator
        android:duration="@android:integer/config_mediumAnimTime"
        android:interpolator="@android:interpolator/decelerate_cubic"
        android:propertyName="translationZ"
        android:startOffset="@android:integer/config_shortAnimTime"
        android:valueFrom="0"
        android:valueTo="-100.0" />

    <objectAnimator
        android:duration="@android:integer/config_mediumAnimTime"
        android:interpolator="@android:interpolator/decelerate_cubic"
        android:propertyName="elevation"
        android:startOffset="@android:integer/config_shortAnimTime"
        android:valueFrom="0"
        android:valueTo="-100.0" />

</set>