0

我在我的应用程序中使用选项卡,但现在它已弃用,所以现在我们建议使用 FragmentTabs,我发现这个例子开始:

  // Tab titles

  private String[] tabs = { "Top Rated", "Games", "Movies" };

但我的问题是如何在片段选项卡中使用图像代替文本?

4

1 回答 1

2

使用SetIcon(R.drawable.icon)在片段选项卡中显示图标代替文本,

看这个例子

喜欢:

  // Create Tab1 with a custom image in res folder
    mTabHost.addTab(mTabHost.newTabSpec("tab1").setIndicator("", getResources().getDrawable(R.drawable.tab1)),
            FragmentTab1.class, null);
于 2013-11-02T04:50:11.433 回答