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

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

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

</transitionSet>