I have an activity with full-screen mode
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
and I used button to open the option menu
dmenu.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
openOptionsMenu();
}
});
but when I click the button no thing happens
when I delete the full-screen theme all things work will so I can Open the menu from my button and from tablet soft menu button
how can I open the menu from my button and with full-screen mode