views:

207

answers:

1
<?xml version="1.0" encoding="UTF-8"?>
<menu xmlns:android="https://schemas.android.com/apk/res/android"&gt;
 <item android:id="@+id/options"
  andoid:icon="@drawable/icon"
  android:title="@string/main_options" />
</menu>

i keep getting the "Error Parsing XML: unbound prefix"

This usually happens when the xmlns:android is missing, but it is right there. I have no idea where the error is coming from.

+1  A: 

You have android spelled wrong at android:icon.

Mayra
this makes me want to shoot myself in the face
Mic Rooney