The res folder inside of bin is supposed to contain .dex,.apk and .ap_ i think.Mines gone empty somehow causing errors like not being able to access the layout resources.I have tried clean and build but it doesent seem to work.Just seem to create an empty res folder.So any idea how to fix this? Thanks.
Ok my problem is with an xml file i'm creating inside of res/menu inorder to create an options menu: options.xml:
<?xml version="1.0" encoding="UTF-8"?>
<menu>
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/setmenu"
android:title="@string/settings"
android:icon="@android:drawable/ic_menu_preferences"></item>
<item
android:id="@+id/helpmenu"
android:title="@string/help"
androidLicon="@android:drawable/ic_menu_help"></item>
</menu>
Heres the error i am getting: Description Resource Path Location Type Unparsed aapt error(s)! Check the console for output. TriviaQuiz line 1 Android ADT Problem
Console Messages: [2011-11-19 16:47:24 - TriviaQuiz] W/ResourceType( 4672): Bad XML block: header size 116 or total size 7602372 is larger than data size 0 [2011-11-19 16:47:24 - TriviaQuiz] H:\workspace\TriviaQuiz\res\menu\options.xml:5: error: Error parsing XML: unbound prefix
Any idea what it is.