Questions regarding designing, implementing and handling menus and action bars in Android. A menu is a user accessible list of commands that typically provide additional functionality that may not be core to the generally displayed user interface.

learn more… | top users | synonyms

0
votes
0answers
15 views

Menu item not shown on child Fragment

This is the menu related code for parent Activity: @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: finish(); ...
1
vote
1answer
26 views

Optional menu item after a submenu not displayed

I have a strange problem on an ActionBar I am setting up on a ListActivity. Here is the XML I use to setup my menu: <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item ...
0
votes
1answer
19 views

What can I do in Android Honeycomb for MenuItem.isActionViewExpanded() and MenuItem.collapseActionView()

The methods MenuItem.isActionViewExpanded() and MenuItem.collapseActionView() were added in Android API version 14 (Ice cream sandwich), so they're not available in Android API versions 11-13 ...
1
vote
2answers
22 views

How can I tell when text is being typed into my Android SearchView on the ActionBar

I want to disable certain features of my app while the user is entering text for a search. The xml for the relevant item in my ActionBar is <item android:id="@+id/actionbar_search" ...
-2
votes
1answer
39 views

How do I make sliding menu in Android? [closed]

I want to make the menu appear in the image. Can you help?
0
votes
1answer
29 views

Handling menu in dual pane fragments

I have a fragment layout like below. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" ...
0
votes
1answer
36 views

error: No resource identifier found for attribute 'layout_alignStart' in package 'android'

I have this project imported from another source and there were problems showing. From one of my layouts, it says "error: No resource identifier found for attribute 'layout_alignStart' in package ...
0
votes
2answers
25 views

findItem() returns null for 1 of 3 menu items

This is the XML document where I define my menu: <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item ...
0
votes
1answer
20 views

Open a contextual menu bar upon menu click

I'm wondering if there is a way to open a contextual menu bar upon click on the phones menu button in Android. I create a contextual menu bar according to this basic tutorial: tutorial contextual menu ...
0
votes
1answer
30 views

Menu Button does not show in Tablet

I have involved with Menu not displaying problem. Menu is displaying in all android device which has menu button. But this is not displaying in Tablet. i tryied also in Galaxy. <uses-sdk ...
0
votes
2answers
52 views

Displaying Android Action Bar

I'm new to android programming and I found out that menu are not available for android 3.0 and up. And suggestions is to use Action Bar. So I have the following in my AndroidManifest.xml <uses-sdk ...
0
votes
1answer
80 views

How can I make a fragment replace actionbar menu behavior?

Before I start, yes I have read countless related questions. I still can't seem to track down the issue. I have a SherlockFragmentActivity: package com.kicklighterdesignstudio.floridaday; import ...
0
votes
1answer
27 views

Number of menu button that is guaranteed to be shown in ActionBar

I did quite a lot of research, but couldn't find an answer for this one. The main quote I am starting from, is from the official android developer site: "If you believe that more than four of your ...
0
votes
0answers
43 views

Android - How to link up custom ActionBar menu button with standard menu inflation

I am using a custom ActionBar mainly as it is so easy to resize and customizable. It needs to be bigger than normal and I don't really want to overlay the standard ActionBar. All is working fine ...
0
votes
2answers
50 views

Change image in action bar

I have an application with a user profile image in the action bar. See image below: When the user opens the application I initially display a default user image: . If they sign in I need to ...
0
votes
0answers
35 views

Split action bar with ABS i can't see nothing

i want to see some button with Split Action Bar and ABS. this is my manifest.xml: ... <application android:allowBackup="true" android:icon="@drawable/ic_launcher" ...
2
votes
1answer
125 views

Bottom action bar on android froyo (api 8)

Has anyone found a way to get a bottom action bar on android versions older than 4 (api 14)? I am reading the tutorial and it says I need api 14. But I know folks have often found ways around similar ...
0
votes
3answers
252 views

Android - want to show 3-dots menu on ICS

I want to show the 3-dot overflow menu key (next to the RecentApp virtual key) when building my app with android:targetSdkVersion="15" Here is my story. My app includes two lib projects (only jars ...
2
votes
1answer
183 views

Native android menu not showing in Phonegap

The android native menu is not opening when pressing menu button while using PhoneGap. When I am pressing menu button, onCreateOptionsMenu() method is getting called but the menu is not getting ...
0
votes
2answers
153 views

SherlockListFragment 'onCreateOptionMenu' crashes on android 2.3.3

I have a generic SherlockListFragment that is used in my App in different cases. This fragment has a Option Menu Item ( a SearchView), here is the code of the SearchView creation: @Override ...
-1
votes
1answer
57 views

Android - Snap layout to top after scrolling down vertically (similar to happycog.com's top menu)

In Android, is it possible to snap a layout (RelativeLayout / LinearLayout / etc.) to the top after scrolling down vertically (similar to happycog.com's top menu)? Can this be achieved in both xml ...
0
votes
0answers
117 views

How to Set text size in menu item?

I want to set different textsize of title in my menu item so how can i do this? I want to change the size of Small,Medium and Large Here is my xml for Menu: <item android:id="@+id/FontSize" ...
0
votes
2answers
41 views

Is it possible to force use of overflow menu to the right of software button?

I have an action bar with many options and a menu. On devices that don't have menu button, the overflow menu is added to my action bar. I want to add this overflow menu button to the right of the ...
2
votes
1answer
230 views

showAsAction=“ifRoom” doesn't show the item even when there is plenty of room

I am trying to get the ActionBar working properly on my app (and I'm using ActionBarSherlock to get a unified UI between Android 2.x and 4.x). I feel like android:showAsAction="ifRoom" is just a ...
1
vote
1answer
68 views

ActionBar shows either all actions or none, putting all into the overflow menu

My app targets SDK 17, I'm testing with Android 4.x emulator (with the Support Library and ActionBarSherlock so that the ActionBar is available for Android 2.x). I've got 6 menu items for one of my ...
0
votes
2answers
66 views

how should I add some action Items to a dialog?

I have a custom dialog which I want to add it some action items with icon like android calender . here is manifest code to give theme to my activity : <activity ...
0
votes
1answer
34 views

Icon is not set on submenu

I had made a sub menu in android and I wanted to add icon on sub-menu but it does not display. I have written the following snippet of code: int base = Menu.FIRST; SubMenu sm = ...
0
votes
0answers
104 views

Android: popup menu issue

In my Linearlayout i have a popup menu , each row performs different action. LinearLayout popupmain = (LinearLayout) view .findViewById(R.id.popupmain); ImageView ...
0
votes
1answer
265 views

Android horizontal scroll menu (like in google locations)

I would like to implement a menu like in the google locations app. It looks like horizontal slide menu but image slides left if you move pointer right. onClick event trigered just after finger ...
2
votes
1answer
35 views

How do I port my menu system to devices with no physical menu button e.g. Nexus?

So I realised I've wasted a lot of time building a menu system that depends on a device with a physical menu button, which works great on all devices bar Nexus. Right, so given that I've been using ...
0
votes
1answer
80 views

How to refer MenuItem that is defined in menu.xml?

I have to refer an item which is defined in menu.xml, dynamically in activity. I tried to refer in following manner: MenuItem homeItem = (MenuItem) findViewById(R.id.home); ...
0
votes
1answer
93 views

Is it ok to use one menu.xml layout file for all Activities?

I am trying to build a menu navigation system throughout my Activities. I'll use a couple of Activities in my application as an example. I have a Maps Activity, Login and List Activity. Maps ...
0
votes
1answer
64 views

Android : Provide alternative context menu to user

On android, whenever the user long-clicks on a text field, they get a context menu with options like 'copy' , 'paste', 'select all' etc. Now, I'm aware I cannot add my own items to this menu, ...
0
votes
2answers
202 views

How can I dynamically create menu items?

I'm building an Android application and I'm trying to build a user management system where users can login, logout, etc. I want to display a login menu item if the user is not logged in and a logout ...
3
votes
1answer
406 views

Android Action bar Sherlock show actions items in dropdown always

I have set three action items which am adding to the ABS through menu XML like this: <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item ...
0
votes
0answers
49 views

Add TextView dynamically and getTag()

I have one class calls "SplitText" and extends AsyncTask. There i added a dynamic textview: TextView masterTV = new TextView(mActivity); tv.setTag("masterTV"); ... ...
0
votes
2answers
157 views

How to set specific listeners for varying popup menus ? (code inside)

I am working on an app which has in one of its activity a "Filter Button" with a popup menu appearing everytime you click on it. The particular thing is that this popup menu is not always the same, it ...
1
vote
1answer
29 views

Android Menu Shown Where User Clicked

I wanted to achieve the same sort of functionality found in Google Now where you can tap the cards overflow icon and a menu appears next to it with options (shown here). Does anyone know how to ...
0
votes
1answer
158 views

Popup menu : items reachable from the actionbar instead of the “menu button” of the device

I have in my application a ListView activity called ResultListViewActivity and which display contents from a database. The content displayed in the listview depends on a button clicked in a previous ...
0
votes
1answer
55 views

Filter menu with items varying according to the value of a variable

I am developing an application whose purpose is to display some content from a database in a listview according to the button clicked. It works this way : I have a main activity with 9 different ...
1
vote
0answers
96 views

How to show tooltip below to an Actionbar menu item?

I am using this Quick Action dialog(https://github.com/lorensiuswlt/NewQuickAction) to show the tool tip. The tool tip action is triggered only when the user action happens. Now I would like to show ...
0
votes
1answer
81 views

Theme does not toggle

I am trying to toggle between the themes. I looked into the HoneyCombGallery sample code and found out the code to toggle between themes. But it is not working in my application. Code: ...
0
votes
0answers
67 views

Differentiate between Menu Items via Group ID

Here is my Menu XML <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item android:id="@+menuid/map" ...
2
votes
1answer
521 views

The overflow menu is not showing in Android 4.2.2

I'm following the simple Tutorial, The problem is its not showing overflow menu in Android 4.2.2. And if I press hardware menu button its showing listed menus. xml code: <item ...
0
votes
2answers
169 views

Making menu key invisible from bottom status bar | uses-sdk android:minSdkVersion=“7”

I am in a position where I have to use uses-sdk android:minSdkVersion="7" in manifest file. I have created my own custom action bar which is actually a LinearLayout. My position is such that I can not ...
2
votes
0answers
155 views

Infinite loop when using onNavigationItemSelected and invalidateOptionsMenu

I have an action bar which contains a list navigation and a sub menu. I want to update the sub menu items according to the user selection in the list navigation. I'm trying to call ...
0
votes
0answers
148 views

Change the Text color of Menu Item

I do not know about the menu text color change. it is default white . and i am trying to change in RED. this is my code:- MenuInflater menuInflater = getMenuInflater(); ...
1
vote
1answer
256 views

Bottom of the screen the menubar/toolbar in android

how to do this? can anyone help me? thanks in advance :)
2
votes
0answers
338 views

How to change action bar submenu item style of menu

my action bar; <item android:id="@+id/userMenuItem" android:orderInCategory="100" android:showAsAction="ifRoom|withText"> <menu> <item ...
0
votes
2answers
216 views

Copy the google plus floating toolbar menu

I'm trying to emulate a "toolbar" type floating menu used by the android google plus app. The menu appears when you scroll up the page and hides nicely when you scroll down. I'm guessing this is a ...

1 2 3 4 5 6