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

    <slide android:slideEdge="right">
        <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>