简体   繁体   中英

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?

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM