Skip to content Skip to sidebar Skip to footer

How To Display An Option Menu When An Activity Starts

I've activity that i want an option menu to be displayed on. But, i want the option menu to be displayed all the time the activity is displayed. I don't want my users to click (sel

Solution 1:

Activity.openOptionsMenu().

From a design standpoint, I have to agree with Mayra. Wrong approach to begin with.

Solution 2:

If you want options to appear at the bottom of the screen always, don't use the options menu. Just place buttons at the bottom of your screen.

However, keep in mind that this goes against the "Android way" of doing things, so make sure you understand how Android users are going to expect your application to look and work, and you have a good reason for doing something different.

Post a Comment for "How To Display An Option Menu When An Activity Starts"