aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/transition/web_context_enter.xml
blob: 213ace90ef04e41bf8cd6d5c373049ea5c64947a (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:interpolator="@android:interpolator/linear_out_slow_in"
    android:transitionOrdering="together">

    <fade android:duration="200">
        <targets>
            <target android:targetId="@id/menu_container" />
        </targets>
    </fade>

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

</transitionSet>