tags:

views:

47

answers:

1

I have create a single item menu, but the text does not appear when it pops up, only the icon does. Am I missing a setting.

<?xml version="1.0" encoding="utf-8"?>
<menu
  xmlns:android="http://schemas.android.com/apk/res/android"&gt;
  <item android:id="@+id/options_menu"
          android:icon="@drawable/options"
          android:title="I can not be seen"
           />
</menu>

Inflated by:

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.main_menu, menu);
    return true;
}
A: 

I had a typo in the list look up.

BahaiResearch.com