Skip to content

Instantly share code, notes, and snippets.

@thomaskioko
Created September 21, 2018 03:35
Show Gist options
  • Save thomaskioko/b16f109143bfdf10616ffde3769a9b92 to your computer and use it in GitHub Desktop.
Save thomaskioko/b16f109143bfdf10616ffde3769a9b92 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<Transition
app:constraintSetEnd="@id/collapsed"
app:constraintSetStart="@id/expanded">
<OnSwipe
app:dragDirection="dragUp"
app:touchAnchorId="@id/recycler_view_tweets"
app:touchAnchorSide="top" />
<KeyFrameSet>
<KeyAttribute
android:alpha="0"
app:framePosition="90"
app:target="@id/tv_user_name_collapsed" />
<KeyAttribute
android:alpha="1"
app:framePosition="100"
app:target="@id/tv_user_name_collapsed" />
<KeyAttribute
android:alpha="0"
app:framePosition="90"
app:target="@id/tv_tweets_count" />
<KeyAttribute
android:alpha="1"
app:framePosition="100"
app:target="@id/tv_tweets_count" />
</KeyFrameSet>
</Transition>
</MotionScene>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment