gpt4 book ai didi

java - android studio 的设计预览中布局为空

转载 作者:行者123 更新时间:2023-12-02 06:12:07 26 4
gpt4 key购买 nike

我一直在做一个项目,有一天我的布局在 android studio 的设计中显示为空。

我已经尝试过输入“Base”。在文件 style.xml 中的“Theme.AppCompat.Light.DarkActionBar”之前,我还尝试清理项目并使缓存/重新启动无效,但没有任何效果。

我在manifest.xml中有这段代码

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.d_sil.vismecassistence">

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />

<application
android:allowBackup="true"
android:icon="@drawable/icon_vismec"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".Login.Activity_Login"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Login.Activity_LoginServer"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".Activity_Main"
android:theme="@style/AppTheme.NoActionBar" />
<activity android:name=".Tasks.Activity_Tasks" />
<activity android:name=".Tasks.Activity_Tasks_Client" />
<activity android:name=".Tasks.Activity_Task_Corretiva" />
<activity android:name=".Activity_Profile" />
<activity
android:name=".Activity_Notifications"
android:theme="@style/AppTheme.NoActionBar" />
<activity android:name=".Activity_Historic" />
<activity android:name=".Activity_Calendar" />
<activity android:name=".Tasks.Activity_Task_Preventiva" />
<activity android:name=".Main2Activity"></activity>
</application>

</manifest>

最佳答案

对于错误注意:一个或多个布局缺少layout_width 或layout_height 属性。大多数布局中都需要这些。或者:自动添加所有缺失的属性

这意味着您在某些 View 中错过了某些宽度或高度。

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content" <<<< this
android:layout_height="wrap_content" <<< and this
android:src="@drawable/logo_splashscreen"
android:scaleType="fitCenter"/>

你可以查看你的layout.xml,看看是否每个View都有这两个属性。或者如果其中任何一个被设置为0

如果是这个原因的话。在最新版本的AndroidStudio中,你可能会看到这样的一些提示 enter image description here

您提到整个 View 是空白的,我可能会检查该 activity.xml 的 Root View ,或者您可以考虑将 xml 粘贴到此处。

关于java - android studio 的设计预览中布局为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55900138/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com