在我的Android活動中,我刪除了操作欄使用此主題的Android onCreateOptionsMenu不顯示
<style name="Theme.NoTitle" parent="@android:style/Theme.NoTitleBar"></style>
但我的問題是「onCreateOptionsMenu」不顯示,我試過這個方法來創建 那請參閱
private void getOverflowMenu()
{
try
{
ViewConfiguration config = ViewConfiguration.get(Home.this);
Field menuKeyField = ViewConfiguration.class.getDeclaredField("sHasPermanentMenuKey");
if (menuKeyField != null)
{
menuKeyField.setAccessible(true);
menuKeyField.setBoolean(config , false);
}
} catch (Exception e)
{
e.printStackTrace();
}
}
在此「onCreateOptionsMenu」未顯示。請幫我
,但它在三星顯示
因爲:在三星手機具有自己的硬件菜單按鈕,但沒有關係等
請參閱圖像