Use more android menu items in one row

android, android-menu

Solution

No (unless you use a split action bar). From the documentation:

- Action buttons in the main action bar may not occupy more than 50% of the bar's width. Action buttons on bottom action bars can use the entire width.

- The screen width in density-independent pixels (dp) determine the number of items that will fit in the main action bar:

- smaller than 360 dp = 2 icons

- 360-499 dp = 3 icons

- 500-599 dp = 4 icons

- 600 dp and larger = 5 icons

Problem

I'm trying to use 6 android menu items in one row,but by default only 3 items are Passable. Is there any way to do that?

Original source