eclipse 是否可以在 Android 的操作栏选项卡上显示图标?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/11422527/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-19 18:31:51  来源:igfitidea点击:

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

javaandroideclipseandroid-actionbarandroid-tabs

提问by Ethan Allen

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

是否可以在 Android 的操作栏选项卡上显示图标?

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

如果是这样,有人可以指出我完成它的人的例子吗?

回答by vasart

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

签出此链接 示例代码ActionBar.Tab.setIcon(Drawable)

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