我正在尝试在/res/drawable
中创建一个新的xml文件(在eclipse中为android开发)
我得到的信息是;
在此处找到多个注释 线: - 文件过早结束。 - 错误:解析XML时出错:找不到元素
当我在正确的文件夹中时,按新建>文件,然后我将其命名为ic_tab_artists.xml
,然后我收到消息^
那么,我做错了什么?
答案 0 :(得分:1)
尝试在文件中添加有意义的内容。例如:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"
android:dither="true">
<item
android:state_window_focused="false"
android:drawable="@android:color/transparent" />
</selector>