在Android Studio 2.2中创建项目时遇到问题
尝试创建xml布局时,出现以下错误:
渲染问题渲染期间引发的异常:无法找到布局资源
这是我的xml代码段:
<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" />...
我该如何解决这个问题?
答案 0 :(得分:-1)
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'