Вы можете использовать предварительный просмотр макета движения: https://giphy.com/gifs/jpn6QpmT3dBtf3XYIS
Зависимость implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta6'
На странице «Дизайн» вашего макета найдите Дерево компонентов и щелкните правой кнопкой мыши root, а затем вы увидите опцию «Преобразовать в MotionLayout». Так и рекомендуется поступать. Потому что он автоматически генерирует XML-папку, в которой находится MotionScene. Если вы не хотите этого делать, вы можете вручную создать папку с именем xml
и поместить в нее activity_main_scene. xml)
activity_main. xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
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:id="@+id/root"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.constraintlayout.motion.widget.MotionLayout
android:id="@+id/motion_base"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutDescription="@xml/activity_main_scene"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
android:theme="?attr/actionBarTheme"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.motion.widget.MotionLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
activity_main_scene. xml (внутри xml
папки, которая также находится внутри папки res)
<?xml version="1.0" encoding="utf-8"?>
<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:motion="http://schemas.android.com/apk/res-auto">
<Transition
motion:duration="1000"
motion:constraintSetEnd="@+id/end"
motion:constraintSetStart="@id/start">
<OnClick
motion:clickAction="transitionToEnd"
motion:targetId="@+id/motion_base"/>
</Transition>
<ConstraintSet android:id="@+id/start" />
<ConstraintSet android:id="@+id/end">
<Constraint
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="invisible"/>
</ConstraintSet>
</MotionScene>