aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/res-public/transition-v21/kau_exit_slide_bottom.xml
blob: e0967ecc7ae6f3c9bcf3d3068ea787f3f41cf532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<transitionSet
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:transitionOrdering="together"
    android:interpolator="@android:interpolator/fast_out_linear_in">

    <slide
        android:slideEdge="bottom"
        android:duration="400">
        <targets>
            <target android:excludeId="@android:id/navigationBarBackground" />
            <target android:excludeId="@android:id/statusBarBackground" />
        </targets>
    </slide>

    <fade android:duration="400">
        <targets>
            <target android:targetId="@android:id/navigationBarBackground" />
            <target android:targetId="@android:id/statusBarBackground" />
        </targets>
    </fade>

</transitionSet>