Questions tagged [options-menu]
108 questions
0
votes
1 answer
Resize Options Menu entries
How could I resize menu entries to have, for example, only one entry on the bottom row. Here is an example:
Notice how the "Add" and "Wallpaper" are both on the top and the others are on the bottom. How could I accomplish the same feat, but having…

Mohit Deshpande
- 53,877
- 76
- 193
- 251
0
votes
1 answer
How can I orient divs properly within another div?
I am trying to create a side bar with an animated menu button. I found an example online of the button I imagined and am trying to use it correctly but cant seem to get it where I want on my page. Why do the three divs that make up the animated…

Doalzer
- 1
- 2
0
votes
0 answers
OptionMenu populated with list, getting error when trying to load empty list. Work around?
Here are the lists I have:
a1 = [x.getName() for x in containers]
a2 = [x.getName() for x in lids]
a3 = [x.getName() for x in wicks]
a4 = [x.getName() for x in labels]
a5 = [x.getName() for x in misc]
z =…

cstmxyz
- 33
- 3
- 8
0
votes
1 answer
Bootstrap 3 Options Menu Disappears
I have a table of 4 columns using the Bootstrap 3 grid system. Instead of using the col-xs-*, which works great on mobile, I used the col-md-*. The reason was simple -- on mobile, I didn't want the icons to shrink down very small and wanted them…

Volomike
- 23,743
- 21
- 113
- 209
0
votes
1 answer
How would I manually set the arrow direction of an options menu presented by a UIDocumentInteractionController?
My app includes an options menu for sharing, which is presented when a UITableViewCell is long pressed. If the UITableViewCell is too high on the screen, the arrow from the options menu is below the UITableViewCell. Is there any way to set the arrow…

Benjy Wiener
- 1,085
- 2
- 9
- 27
0
votes
5 answers
Android Overflow Menu Button is not visible on some phones
The app runs fine. On devices with hard options menu button the menu shows up, so i know it works. On some devices it shows the overflow button at the top-right.
I my test case the device is Asus Zenphone 5 there is no hard button, i dont get a…

Deepak
- 1,238
- 3
- 22
- 47
0
votes
2 answers
Menu won't show in navigation bar
im trying to add a (+) icon on right of navigation bar in android, and then launch a new intent when clicked, but i can't seem to make it work, it's showing me the left icon to open/close the drawer, but the right icon is nowhere to be found.
Can…

RonEskinder
- 527
- 8
- 24
0
votes
1 answer
Android - Ques on order in which Fragment Options Menu called
I was reading the help section on google's android page on OptionsMenus and ActionsBars:
http://developer.android.com/guide/topics/ui/actionbar.html
And they included a note that stated that when using fragments, the activity's onOptionsItemSelected…

user3064141
- 407
- 4
- 17
0
votes
0 answers
Menu and options menu together
how can I create a mainmenu in the actionbar and also an "options" menu that will open on hardware button click?
Like Whatsapp. There's an actionbar with avatar, name and and icon and if you press "menu" button, it will appear another menù with…

Theraloss
- 700
- 2
- 7
- 30
0
votes
1 answer
Implement options menu in Fragment Activity
I have two fragment activities and one fragment. Here's how the app logic looks like:
FragmentActivity A ==> Fragment B ==> FragmentActivity C.
FragmentActivity A is the parent activity of fragment B and has an options menu that shows…

mungaih pk
- 1,809
- 8
- 31
- 57
0
votes
1 answer
How to get the options menu to disappear without pressing back/destroying the activity
Going off my last question Why is my options menu not showing the settings menu item correctly?,
The code for everything
@Override
public boolean onPrepareOptionsMenu(Menu menu) {
// only add the menu when the selection fragment is…

committedandroider
- 8,711
- 14
- 71
- 126
0
votes
2 answers
JQuery select options reordering after selection
I have a list of course names and I want my users to select their order of preference for each one. So say we have 3 courses, each course would have a drop-down list alongside it, with the options of '1st choice', '2nd choice', '3rd choice'.
Now…

iltdev
- 1,789
- 9
- 27
- 51
0
votes
1 answer
How to create an activity with options in ActionBar and OptionsMenu together?
In the same activity, I want to place some options in the optionsMenu and some on the ActionBarActivity. Should I create a separate xml file for the options to be placed in the optionsMenu and another xml file for those I want to place them on the…

Amrmsmb
- 1
- 27
- 104
- 226
0
votes
1 answer
Moving options menu to another view
I am trying to display the options menu in another place but the ActionBar, is it is hidden.
I have no clue on how to do it nor I find any function to do such things.
I am using Theme.Light.NoTitleBar as theme/style, but still I'd like to have the…
user1320847