BurninatorDor
BurninatorDor

Reputation: 1117

Change ActionBar style: Bring text underneath icon

I have a tabbed application, which uses the theme Holo.Light

Is it possible to display the name of the tab UNDERNEATH the tab icons for higher API, for an Action Bar? If so, then how?

Upvotes: 1

Views: 478

Answers (1)

kumar_android
kumar_android

Reputation: 2263

You have to create custom layout view and add that like this

ActionBar.Tab tabA= bar.newTab().setCustomView(R.layout.actionbar_custom_tab);

"actionbar_custom_tab" is the my customized layout, here you can set icon and textview based on your requirement

Upvotes: 2

Related Questions