Reputation: 436
Does anyone know if it is possible to create vertical tab bar in android or if there is a library out there that provides the capability to do vertical tab bar?
Thanks!
Upvotes: 1
Views: 3324
Reputation: 360
You can achieve this by using the following code:
getTabWidget().setOrientation(LinearLayout.VERTICAL);
source
Upvotes: 4