I have made a completely new project. I have added items to the menu
layout file. Those items do not show up on the action bar\'s right side. I remember that an
I had to set setHasOptionsMenu(true)
in onViewCreated
or in onCreate
Add
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
in the onCreate method.
There seems to be a misunderstanding about this showAsAction
property in the menu configuration. The information I find in the many stackoverflow answers always seem to be incomplete. So here is an attempt to change that.
There is no way to control if your actionbar will show the three dot overflow menu or not in code.
Well you can force it not to show by having no options menu for sure. And to be fair you can hack around this, more info at How to force use of overflow menu on devices with menu button
The dots showing or not depends on the device you're testing on. Devices with a menu button will NOT SHOW the three dot icon on the actionbar since users can use the menu button on the device.
Devices that don't have this options menu button (like the nexus devices starting from Galaxy) have no alternative to trigger that options menu. Running the same app on these devices will show the three dot overflow menu option in the actionbar.
There is the showAsAction
option in the menu xml file that you can use to control how that single menu option will show up in the actionbar.
According to official menu resource doc the options are:
android:showAsAction=["ifRoom" | "never" | "withText" | "always" | "collapseActionView"]
The ifRoom
flag only shows the option if there is enough room. This should be your first choice in most cases. This will however condense the title in the actionbar (see vertical oriented screenshot).
The never
flag will have this option always in the overflow menu and never directly in the actionbar.
The use of the always
flag is discouraged since it will force the option to always appear in the acitonbar. Even if running on a very small screen size. This could render the title completely invisible.
As you might now an option menu can have both an android:title
and an android:icon
property. You can use the withText
flag together with always
or ifRoom
(use a pipe |
in between) to force the text of the item to show next to the icon when rendered in the actionbar.
The collapseActionView
is only supported from API level 14
so let me ignore that.
A screenshot showing the below code snippet in action on a device hold in portrait mode:
And another screenshot where there is more space in the actionbar thanks to the landscape mode:
The best development doc about this actionbar would be the actionbar guide. If you're looking more for design guidelines follow this link. The menu resource link was listed before. For menus in general check this.
The code only for reference since that part seems to be right in most answers. A more complete example can be found at https://github.com/AndroidExamples/fragment-navigation
The /res/menu/main.xml
file contents:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context="be.hcpl.android.example.MainActivity" >
<!-- an option that never appears as a fixed text/icon in the actionbar -->
<item android:id="@+id/action_one"
android:title="@string/action_one"
android:orderInCategory="100"
app:showAsAction="never" />
<!-- another option that only appears if there is enough room -->
<item android:id="@+id/action_two"
android:title="@string/action_two"
android:orderInCategory="200"
app:showAsAction="ifRoom" />
<!-- a last option that always appears -->
<item android:id="@+id/action_three"
android:title="@string/action_three"
android:orderInCategory="300"
app:showAsAction="always" />
<!-- an option to show with both icon and text -->
<item android:id="@+id/action_four"
android:icon="@android:drawable/ic_menu_directions"
android:title="@string/action_four"
android:orderInCategory="400"
app:showAsAction="withText|always" />
<!-- an option to always show as an icon only -->
<item android:id="@+id/action_five"
android:icon="@android:drawable/ic_menu_info_details"
android:title="@string/action_five"
android:orderInCategory="500"
app:showAsAction="always" />
</menu>
add custom namespace like this to showAsAction and actionViewClass
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/search"
android:title="@string/search"
android:icon="@drawable/ic_search"
app:showAsAction="collapseActionView|ifRoom"
app:actionViewClass="android.widget.SearchView" />
I think you want to show the overflow menu icon on the top right always and want your menu to open from there. Try something like following to force it there:
Inside your onCreate()
do:
try {
ViewConfiguration config = ViewConfiguration.get(this);
Field menuKeyField = ViewConfiguration.class.getDeclaredField("sHasPermanentMenuKey");
if(menuKeyField != null) {
menuKeyField.setAccessible(true);
menuKeyField.setBoolean(config, false);
}
} catch (Exception ex) {
// Ignore
}
It will force the App to show the overflow menu. The menu button will still work, but it will open the menu in the top right corner. Taken from this answer at How to force use of overflow menu on devices with menu button . This might be a kind of 'hack' but it works.
Edit:
Based on useful comments from @gunar, I request not to use this method. Following are the reasons:
The private field sHasPermanentMenuKey
can be refactored in a future
releases. Your app will stop working then.
Also If you force moving action items to action bar because you're
used to them, you'll end up confusing users that are used to how apps
run on their device. Those with hardware menu
key will be used to
have the options showed from menu hardware key. If you intentionally
show them the three dots of overflow menu, it might confuse them.
So let all the apps be uniform in that sense. Those devices with no hardware key for menu
items will show those automatically.
You need to call this function in onCreate function of the activity.
RequestWindowFeature (Window.FEATURE_ACTION_BAR);