Created
September 21, 2018 03:35
-
-
Save thomaskioko/b16f109143bfdf10616ffde3769a9b92 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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