Android Studio XML 在设计视图中不显示任何内容。 (空白屏幕)

问题描述 投票:0回答:3

我检查了其他问题,但它们都是关于黑屏(白屏或主题)。但就我而言,它实际上什么也没显示。

我尝试了“强制刷新布局”。但这没有用。并且只有重新启动才能解决问题。只是关闭并打开 Android Studio 并不能解决这个问题(我什至尝试删除缓存并重新启动。)

Android Studio 哪一款与 Design View 相关?我不想重新启动,即使重新启动,这个问题仍然发生,所以,我需要一些更好的方法来解决这个问题。

enter image description here

android android-studio android-layout android-xml androiddesignsupport
3个回答
0
投票

只需从 android studio gradle 重新加载 gradle 项目


-1
投票

尝试这个解决方案,看看是否有任何一个确实有效

  1. 更新约束布局依赖项 将 gradle 模块文件中的依赖项更改为类似这样的内容并同步它 implementation'androidx.constraintlayout:constraintlayout:2.1.1'
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'])
}
  1. 使缓存无效/重启 文件>无效缓存/重启

  2. 禁用和启用 Android 支持 apk 文件>设置>插件>在已安装部分->禁用并启用,看看它是否有效


-1
投票

您将能够查看您的约束布局是否使用任何 Theme.AppCompat 主题。例如

android:theme="@style/AppTheme.NoActionBar"
© www.soinside.com 2019 - 2024. All rights reserved.