Skip to content

Instantly share code, notes, and snippets.

@Jaypatelbond
Created November 18, 2019 12:14
Show Gist options
  • Save Jaypatelbond/09915866a1121e67f15c45e154638c71 to your computer and use it in GitHub Desktop.
Save Jaypatelbond/09915866a1121e67f15c45e154638c71 to your computer and use it in GitHub Desktop.
Layout to understand the Motion Layout in Android.
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<androidx.constraintlayout.motion.widget.MotionLayout
android:id="@+id/constraintLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layoutDescription="@xml/activity_main_motion_scene"
app:showPaths="true">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:clickable="false"
android:text="Click Here"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.motion.widget.MotionLayout>
</ScrollView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment