1

The error I'm getting:

"The markup in the document following the root element must be well-formed."

Using Eclipse, my styles.xml file:

<?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>
kjhughes
  • 106,133
  • 27
  • 181
  • 240
moralkill
  • 97
  • 1
  • 3
  • 6

2 Answers2

0

what's the ; on the <resources.../>; item doing there. i'd get rid of it first.

David M
  • 2,511
  • 1
  • 15
  • 18
0

oh! it looks like you close <resources .... /> too soon. you need to remove the / on the first resources to allow the closing </resources> to balance.

David M
  • 2,511
  • 1
  • 15
  • 18