Sahir
Sahir

Reputation: 436

vertical tab bar in android

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

Answers (1)

wlcrs
wlcrs

Reputation: 360

You can achieve this by using the following code:

getTabWidget().setOrientation(LinearLayout.VERTICAL);

source

Upvotes: 4

Related Questions