0

我想使用指向位图文件的 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" />

请帮助

4

3 回答 3

0

我认为在创建 .xml 文件时,您使用了“Android XML 值文件”。改用“Android XML File”并在下一页选择位图。

于 2015-03-06T04:27:32.153 回答
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>
于 2013-08-21T14:47:16.763 回答
0

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

于 2013-08-21T15:06:04.433 回答