Ethan Allen
Ethan Allen

Reputation: 14835

Is it possible to have icons on Action Bar Tabs for Android?

Is it possible to have icons on Action Bar Tabs for Android?

If so, can someone point me to an example of someone who's accomplished it?

Upvotes: 9

Views: 11326

Answers (1)

vasart
vasart

Reputation: 6702

Checkout this link ActionBar.Tab.setIcon(Drawable)
Sample code

tab = getActionBar.newTab();
tab.setText(tabText);
tab.setIcon(R.drawable.tab_icon);

Upvotes: 28

Related Questions