我不知道如何为 Android 中的资源获取正确的 XML 结构。
我已将 recepies.xml 保存到 values 文件夹中,并希望解析它们。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<recepies xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<recepie name="recepie1">
<item></item>
<NumberOfPersons>1</NumberOfPersons>
<Ingredients>
<string></string>
<string></string>
</Ingredients>
<Preparation></Preparation>
<Energy>342</Energy>
<Protein>8</Protein>
<RecipeCategory>3</RecipeCategory>
</recepie>
但是,我得到或“无效的开始标签”,
如果我在没有这样的收件人标签的情况下格式化它:
<?xml version="1.0" encoding="UTF-8" standalone="yes" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"?>
我明白了,不再允许使用伪属性。
如果我只使用这个:
<?xml version="1.0" encoding="UTF-8"?>
我知道标记的格式不正确。
我想我在 XML 格式的基础知识方面遗漏了一些东西,但我不知道是什么。