我正在尝试使用android MotionLayout,但是它找不到适合的类并且无法正常工作。
我尝试实现以下依赖项:
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta1'
implementation 'com.android.support.constraint:constraint-layout:2.0.0-beta1'
implementation 'com.android.support.constraint:constraint-layout:2.0.0-alpha2'
implementation 'com.android.support.constraint:constraint-layout:2.0.0-alpha4'
但它们似乎都不起作用...
这是我的XML文件:
<android.support.constraint.motion.MotionLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
footstools="http://schemas.android.com/tools"
android:id="@+id/motionLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:showPaths="true"
tools:context=".PlayGameActivity">
<View
android:id="@+id/button"
android:layout_width="64dp"
android:layout_height="64dp"
android:background="@color/colorAccent"
android:text="Button" />
</android.support.constraint.motion.MotionLayout >'
但是它总是给我这种错误信息:
Missing classes
The following classes could not be found:
- android.support.constraint.motion.MotionLayout (Fix Build Path, Edit XML, Create Class)
Tip: Try to build the project.
Tip: Try to refresh the layout.
,并且在项目的预览窗口中,它以灰色填充整个布局并写在中间:
android...MotionLayout
答案 0 :(得分:1)
没有android.support.constraint.motion.MotionLayout
在implementation "androidx.constraintlayout:constraintlayout:2.0.0-beta2"
中。
它叫androidx.constraintlayout.motion.widget.MotionLayout
。
如果MotionLayout
显示为灰色,则表明您可能缺少app:layoutDescription
XML。
有一个example用于AndroidX和支持库版本。