Reputation: 1117
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
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