Reputation: 4173
Is it possible to have two different menu bars with ActionBarSherlock
: one at the top and one at the bottom of screen? I have seen it in many apps, including some system apps, but can't find the appropriate solution. Note that I want to work with both bars like with menus, not just write custom layout and work with simple views, and use them in several Activities
in my app.
Upvotes: 0
Views: 109
Reputation: 1006594
Is it possible to have two different menu bars with ActionBarSherlock: one at the top and one at the bottom of screen?
Use android:uiOptions="splitActionBarWhenNarrow"
on your <activity>
or <application>
in the manifest.
Upvotes: 1