如何使标签图像变大?

时间:2012-05-30 22:13:17

标签: android

我在标签中看到了这张图片,但它太小了。我该如何缩放它或填充标签

final TabHost tabHost = getTabHost(); //edit: added this line
tabHost.addTab(tabHost.newTabSpec("tab3").setIndicator("Discussion",
      getResources().getDrawable(R.drawable.forum))
                        .setContent(new Intent(this, MyActivity.class)));

2 个答案:

答案 0 :(得分:0)

LinearLayout设为TabHost的孩子,并将您的图片添加到LinearLayout

答案 1 :(得分:0)

您将无法使用您正在使用的方法。 drawable不是一个小图标。如果您想要自定义内容,则必须使用setIndicator(View)。我想你会创建一个ImageView集来使用你想要的drawable并传入它。如果你想让文本“讨论”仍然存在,你必须创建一个带有{的布局{1}}和ImageView并使用它。