Skip to content

Instantly share code, notes, and snippets.

@andremion
Last active June 17, 2016 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andremion/358e43666bd5679dc71cd955af10a927 to your computer and use it in GitHub Desktop.
Save andremion/358e43666bd5679dc71cd955af10a927 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<transitionSet xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="@integer/anim_duration_default"
// 1
android:startDelay="@integer/anim_duration_default">
// 2
<fade>
<targets>
<target android:targetId="@id/pane" />
</targets>
</fade>
// 3
<slide android:slideEdge="bottom">
<targets>
<target android:excludeId="@android:id/statusBarBackground" />
<target android:excludeId="@id/pane" />
<target android:excludeId="@android:id/navigationBarBackground" />
</targets>
</slide>
</transitionSet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment