我在标签中看到了这张图片,但它太小了。我该如何缩放它或填充标签
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)));
答案 0 :(得分:0)
将LinearLayout
设为TabHost
的孩子,并将您的图片添加到LinearLayout
答案 1 :(得分:0)
您将无法使用您正在使用的方法。 drawable不是一个小图标。如果您想要自定义内容,则必须使用setIndicator(View)
。我想你会创建一个ImageView
集来使用你想要的drawable并传入它。如果你想让文本“讨论”仍然存在,你必须创建一个带有{的布局{1}}和ImageView
并使用它。