4

I want to display the Action Bar Vertically in my App. I have found few examples for the Horizontal One, but not any for the Vertical One.

Can anyone please give me any example for the Vertical Action Bar.

Thanks, David Brown

David Brown
  • 4,783
  • 17
  • 50
  • 75

1 Answers1

1

There's nothing in the Android UI design guide about a vertical ActionBar. But you might be able to coerce a similar effect by locking the display orientation, and then applying a rotation to the View in the content area. You also might be able to get somewhere by downloading the source code for ActionBarSherlock and implementing your own version of the ActionBar. But I don't recommend either of these solutions. If you're really that intent on putting actions on the side of your screen, I suggest either a small vertical LinearLayout, or implement one of the side navigation solutions as discussed in Android Facebook style slide.

Community
  • 1
  • 1
Sparky
  • 8,437
  • 1
  • 29
  • 41