Android - openOptionsMenu doesn't work in onCreate
- by kape123
Is there any other way to call openOptionsMenu after activity is displayed without using something like this:
new Handler().postDelayed(new Runnable() {
public void run() {
openOptionsMenu();
}
}, 1000);
Reference:…