i'm developing an application to an Android Tablet (XOOM), and i would like to know if it is possile to put the action bar on the bottom of the screen, instead of the top (which is the default option).

Thanks.

link|improve this question

feedback

2 Answers

Check this,

http://developer.android.com/reference/android/app/ActionBar.LayoutParams.html

link|improve this answer
Thank you sir @Raghu. I tried to do mActionBar.setGravity(Gravity.BOTTOM); but that didn't worked out for me. Is it really possible? Thank you – Paulo Barros Aug 12 '11 at 12:38
feedback

if you're getting your ActionBar in an Activity you could just add this android:uiOptions="splitActionBarWhenNarrow" to your manifest for that specific Activity.

That worked for me :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.