我在我的应用程序中使用Tabs,但现在已经弃用了,所以现在我们建议使用FragmentTabs,我发现this example开始使用:
// Tab titles
private String[] tabs = { "Top Rated", "Games", "Movies" };
但我的问题是如何使用图像代替片段选项卡中的文本?
答案 0 :(得分:2)
使用 SetIcon(R.drawable.icon)在片段标签中显示图标代替文字,
请参阅此example
<强>像:强>
// Create Tab1 with a custom image in res folder
mTabHost.addTab(mTabHost.newTabSpec("tab1").setIndicator("", getResources().getDrawable(R.drawable.tab1)),
FragmentTab1.class, null);