我想使用指向位图文件的 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" />
请帮助
我想使用指向位图文件的 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" />
请帮助
我认为在创建 .xml 文件时,您使用了“Android XML 值文件”。改用“Android XML File”并在下一页选择位图。
尝试用以下方式包装它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>
拖动鼠标时,文件被错误地移动到了其他文件夹。这导致了所有问题。不过还是非常感谢大家。