У меня есть сцена с макетом начальных ограничений и окончанием. Проблема в том, что анимация смахивания резкая. Он просто преобразует начало, конец и конец, чтобы начать в одном кадре и не анимировать. Жест Onclick выполняет анимацию, но я хочу использовать жест смахивания
Motionscene. xml внутри xml папка
<?xml version="1.0" encoding="utf-8"?>
<MotionScene
xmlns:motion="http://schemas.android.com/apk/res-auto">
<Transition
motion:constraintSetStart="@layout/backdrop_layout_end"
motion:constraintSetEnd="@layout/backdrop_layout_start"
motion:motionInterpolator="easeInOut"
motion:transitionDisable="false"
motion:duration="200">
<OnSwipe
motion:touchAnchorId="@id/toggle"
motion:dragDirection="dragDown"
motion:maxAcceleration=".5"
/>
</Transition>
</MotionScene>
layout_start. xml внутри папки макета
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:motion="http://schemas.android.com/tools">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/backdrop_back"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:background="@color/amber_800"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/backdrop_front"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1"
android:background="@drawable/upper_rounded_corners"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="100dp">
<ImageView
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="@dimen/margin_10"
android:id="@+id/toggle"
android:layout_gravity="center"
android:src="@drawable/ic_adjust"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
layout_end. xml в папке макета
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:motion="http://schemas.android.com/tools">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/backdrop_back"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:background="@color/amber_800"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_height="match_parent"
android:id="@+id/backdrop_front"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintVertical_bias="1"
android:layout_marginTop="@dimen/margin_10"
android:background="@drawable/upper_rounded_corners"
android:orientation="vertical"
android:layout_width="match_parent">
<ImageView
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="@dimen/margin_10"
android:id="@+id/toggle"
android:layout_gravity="center"
android:src="@drawable/ic_adjust"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
Кроме того, я использую layout_start внутри параметра "end" и layout_end в параметре "start" в сцене движения. Это не опечатка. Если я go наоборот, то регистры смахивания вниз переключают вверх, а регистры смахивания вверх переключают вниз. Я почти верю, что в этой библиотеке есть ошибка. Любая помощь приветствуется. спасибо!