我正在尝试在我的测试应用程序中创建菜单选项。
当我将清单中的主题设置为默认值时,我能够看到菜单(菜单显示在顶部)。如果我将清单中的主题设置为 NoTitleBar。我看不到菜单选项?
我想在清单中设置主题“NoTitleBar”时获取菜单。
如何解决?
以下是我在测试应用程序中使用的东西:
与清单:
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
<activity
android:name="com.ssn.menuoptions.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
和
菜单.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/menu_preferences"
android:title="Preferences" />
</menu>
Java 文件:
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
是否有可能得到这样的东西:
如何使菜单显示出来?
谢谢!