Android XML位图提供错误“无效的开始标记位图”错误

时间:2013-08-21 14:39:02

标签: android

我想使用指向位图文件的xml位图文件

我收到错误“无效的开始标记位图”。该文件放在res / drawable文件夹中。

<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
 android:src="@drawable/back"
 android:tileMode="repeat" />

请帮助

3 个答案:

答案 0 :(得分:0)

尝试用item包裹它:

<?xml version="1.0" encoding="utf-8"?>
<item xmlns:android="http://schemas.android.com/apk/res/android">
    <bitmap 
        android:src="@drawable/back"
        android:tileMode="repeat" />
</item>

答案 1 :(得分:0)

拖动鼠标时,文件被错误移动到其他文件夹。这导致了所有问题。非常感谢大家。

答案 2 :(得分:0)

我认为在创建.xml文件时,您已经使用了&#34; Android XML Value File&#34;。 使用&#34; Android XML文件&#34;而是在下一页中选择位图。