动画编辑器无法在 Android studio 4.0.1 中运行
Motion editor not working in Android studio 4.0.1
我正在尝试在 android studio 4.0.1 中设置动画布局,并且一切正常,直到我在动画编辑器中进行编辑。它渲染得很好,但只要我在运动场景中编辑一些东西,它就会显示 .
但是我用
implementation 'com.google.android.material:material:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-rc1'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.3.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
和android构建工具版本为
classpath 'com.android.tools.build:gradle:4.0.1'
和gradle版本是
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
我尝试清理>重建项目;使缓存失效并重启,删除.idea中的lib文件夹。有什么我想念但需要配置以使用 Motion Layout 的东西吗?
尝试 implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta6'
而不是 implementation 'androidx.constraintlayout:constraintlayout:2.0.0-rc1'
或其他测试版
我正在尝试在 android studio 4.0.1 中设置动画布局,并且一切正常,直到我在动画编辑器中进行编辑。它渲染得很好,但只要我在运动场景中编辑一些东西,它就会显示
但是我用
implementation 'com.google.android.material:material:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-rc1'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.3.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
和android构建工具版本为
classpath 'com.android.tools.build:gradle:4.0.1'
和gradle版本是
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
我尝试清理>重建项目;使缓存失效并重启,删除.idea中的lib文件夹。有什么我想念但需要配置以使用 Motion Layout 的东西吗?
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta6'
而不是 implementation 'androidx.constraintlayout:constraintlayout:2.0.0-rc1'
或其他测试版