gpt4 book ai didi

android - 渲染问题 渲染期间引发异常 : Could not find layout resource

转载 作者:太空宇宙 更新时间:2023-11-03 11:24:30 27 4
gpt4 key购买 nike

我在 Android Studio 2.2 中创建项目时遇到了问题

尝试创建 xml 布局时,出现以下错误:

呈现问题在呈现过程中出现异常:找不到布局资源

enter image description here

这是我的 xml 代码 fragment :

<ScrollView xmlns:android="schemas.android.com/apk/res/android"
xmlns:app="schemas.android.com/apk/res-auto"
xmlns:tools="schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent" android:orientation="vertical">
<include layout="@layout/app_bar" />...

我该如何解决这个问题?

最佳答案

Android Studio 2.2 推出了用于嵌套布局的 ConstraintLayout。添加 ConstraintLayout 作为 app_bar.xml 的主布局。

    <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

</android.support.constraint.ConstraintLayout>

注意:- 不要忘记为 ConstraintLayout 添加依赖项。

compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha2'

关于android - 渲染问题 渲染期间引发异常 : Could not find layout resource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37508628/

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