我在Android Studio中渲染项目时遇到了问题。它说文件不存在或不是文件,但它存在并且它是一个文件。
我已经尝试了所有方法,将SDK级别降低到清单所说的级别。我也改变了主题,但没有任何反应,现在我甚至无法打开模拟器,它说它已经尝试打开300秒。
请帮忙。我会附上照片。
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>
答案 0 :(得分:2)
您已将Drawable文件(文件包含shape
标记)放到xml
文件夹中,因此Android Studio会错误地解释它。只需将其移至drawable
文件夹