我检查了其他问题,但它们都是关于黑屏(白屏或主题)。但就我而言,它实际上什么也没显示。
我尝试了“强制刷新布局”。但这没有用。并且只有重新启动才能解决问题。只是关闭并打开 Android Studio 并不能解决这个问题(我什至尝试删除缓存并重新启动。)
Android Studio 哪一款与 Design View 相关?我不想重新启动,即使重新启动,这个问题仍然发生,所以,我需要一些更好的方法来解决这个问题。
只需从 android studio gradle 重新加载 gradle 项目
尝试这个解决方案,看看是否有任何一个确实有效
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
}
使缓存无效/重启 文件>无效缓存/重启
禁用和启用 Android 支持 apk 文件>设置>插件>在已安装部分->禁用并启用,看看它是否有效
您将能够查看您的约束布局是否使用任何 Theme.AppCompat 主题。例如
android:theme="@style/AppTheme.NoActionBar"