arrays.xml:16: error:解析XML错误:不匹配的标签


<string-array name="screen_orientation_entryvalues"><item>sensor</item><item>landscape</item>unspecified</item></string-array>
<string-array name="solar_emulation_entries"><item>L + left/right</item><item>"Device's light sensor"</item></string-array>
<string-array name="solar_emulation_entryvalues"><item>user_setting</item><item>light_sensor</item></string-array>

第一个string-array中的最后一个item具有不匹配的结束标记。

下面是与之匹配的开始标签:

<resources>
<string-array name="screen_orientation_entryvalues"><item>sensor</item><item>landscape</item><item>unspecified</item></string-array>
<string-array name="solar_emulation_entries"><item>L + left/right</item><item>"Device's light sensor"</item></string-array>
<string-array name="solar_emulation_entryvalues"><item>user_setting</item><item>light_sensor</item></string-array>
</resources>

相关内容

  • 没有找到相关文章