Eclipse Android menu/blahblah.xml is giving parsing error
Error I faced:
Description Resource Path Location Type
error: Error parsing XML: unbound prefix location_eye.xml /yourapp/res/menu line 3 Android AAPT Problem
How I solve it:
I replaced myfile.xml with the below and it worked for me :D
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:showAsAction="never"
android:title="@string/action_settings"/>
</menu>
Comments
Post a Comment