タグ付けされた質問 「android-motionlayout」

1
EditTextを使用したモーションレイアウトでアニメーションが破壊される
コーディネーターレイアウトにほぼ似たシンプルなMotionLayoutを作成しました(アニメーションは少し異なります)。 このような何か: コンテンツエリア内でEditTextビューを(いくつか)使用すると、キーボードが開いたときにMotionLayoutアニメーションが壊れます。アニメーションに遅延が生じ、状態が間違っており、UIが少しフリーズし始めます。これを解決する方法はありますか? GIFとしてのバグへのリンク 使用されているバージョン: com.google.android.material:material:1.2.0-alpha01 androidx.constraintlayout:constraintlayout:2.0.0-beta3 小さなサンプルアプリでも動作を再現できました layout.xmlの例: <androidx.constraintlayout.motion.widget.MotionLayout 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" app:layoutDescription="@xml/animation" tools:showPaths="true"> <androidx.appcompat.widget.Toolbar android:id="@+id/customtoolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <com.google.android.material.textview.MaterialTextView android:id="@+id/title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="32dp" android:layout_marginBottom="48dp" android:text="title" app:layout_constraintBottom_toTopOf="@+id/formLayout" app:layout_constraintStart_toStartOf="parent" /> <ImageView android:id="@+id/image" android:layout_width="200dp" android:background="#ff00ff" android:layout_height="200dp" android:scaleType="centerCrop" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintTop_toTopOf="parent" app:srcCompat="@drawable/ic_home_black_24dp" /> <androidx.core.widget.NestedScrollView android:id="@+id/formLayout" android:layout_width="match_parent" android:layout_height="0dp" app:layout_constraintBottom_toBottomOf="parent" …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.