渲染Android studio 2.3.3:文件不存在或不是文件

时间:2017-09-04 14:12:31

标签: android android-layout android-studio render

我在Android Studio中渲染项目时遇到了问题。它说文件不存在或不是文件,但它存在并且它是一个文件。

我已经尝试了所有方法,将SDK级别降低到清单所说的级别。我也改变了主题,但没有任何反应,现在我甚至无法打开模拟器,它说它已经尝试打开300秒。

请帮忙。我会附上照片。

This is the render problem

Here is the file that "doesn't exist" according to the problem

清单中SDK的版本是22,而且是我使用的版本:

<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="22" />   

这是我调用此文件的布局代码:

android:id="@+id/lyHeader"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@xml/header_color"
android:paddingBottom="5dip"
android:paddingTop="5dip" >

这是文件的内容:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#71A2C7" />
</shape>

1 个答案:

答案 0 :(得分:2)

您已将Drawable文件(文件包含shape标记)放到xml文件夹中,因此Android Studio会错误地解释它。只需将其移至drawable文件夹

即可