我得到的错误:
"The markup in the document following the root element must be well-formed."
使用Eclipse,我的styles.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="schemas.android.com/apk/res/android"/>
<style name="ToDoTheme"parent="@android:style/Theme.Black">
<item name="android:textSize">12sp</item>
</style>
</resources>
答案 0 :(得分:0)
;
项目上的<resources.../>;
是什么。我先摆脱它。
答案 1 :(得分:0)
哦!看起来你太快关闭了<resources .... />
。您需要删除第一个/
上的resources
,以便让结算</resources>
保持平衡。