응용 프로그램의 오른쪽 상단에있는 onCreateOptionsMenu를 표시하려고합니다. 3 개의 점들을 만지지 않고. 앱이 내가 자동으로 사용자에게 메뉴 항목을 표시하려면 처음 실행될 때 내가 실제로 어떻게 기획하고하는 것은 내가 see the screenshot to get more detailsonCreateOptionsMenu를 자동으로 트리거하는 방법
SharedPreferences preferences= PreferenceManager.getDefaultSharedPreferences(this);
if (!preferences.getBoolean("Time",false))
{
// code to trigger onCreateOptionsMenu
Toast.makeText(getApplicationContext(), "Showing menu items ", Toast.LENGTH_LONG).show();
SharedPreferences.Editor editor=preferences.edit();
editor.putBoolean("Time",true);
editor.commit();
}
코드에서 수행 할 작업을 찾고 있다면 _How to ... 프로그래밍 방식으로 검색하는 것이 좋습니다. 많은 스택 오버플로 응답 옆에 있습니다. 많은 경우 f.e. AppCompat/Toolbar와'onCreate'의 문제 : http://stackoverflow.com/questions/3133318/how-to-open-the-options-menu-programmatically 그리고 다른 것, 당신이 UI (UI 스레드에서) 프로그래밍 방식으로 체크 아웃하는 것이 좋습니다. http://stackoverflow.com/questions/12850143/android-basics-running-code-in-the-ui-thread – makadev