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

Ethan Allen picture Ethan Allen · Jul 10, 2012 · Viewed 11.3k times · Source

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?

Answer

vasart picture vasart · Jul 10, 2012

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

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