At what dp screen width does the action bar not split when android:uiOptions="splitActionBarWhenNarrow" is set?

android, android-actionbar

Solution

If the screens width (in the current rotation) is bigger than 480dp then Android won't use the split ActionBar.

See this boolean value from the framework.

Edit:

`splitActionBarWhenNarrow` has been deprecated.

Problem

I'm really after the screen config qualifiers that would be picked when the screen is wide enough for the split action bar to not split.

Original source