在Android标签上,如何在图片下显示文字?

时间:2012-01-12 14:13:41

标签: android image text tabs android-tabhost

我有一个使用标签的Android应用程序。 我已经在应用程序上正确显示了选项卡和活动。 我的问题是,当我在选项卡上添加文本和图像时,文本会显示在图像上。(EXAMPLE) 我想要的是文字出现在图像下面。如果我使用图像或选择器,则会发生这种情况。 我使用此代码将选项卡添加到tabHost:

// Do the same for the other tabs
intent = new Intent().setClass(this, CategoryListActivity.class);
spec = tabHost.newTabSpec(getString(R.string.category_title)).setIndicator(getString(R.string.category_title), res.getDrawable(R.drawable.ic_category)).setContent(intent);
tabHost.addTab(spec);

关于如何解决此问题的任何想法?

1 个答案:

答案 0 :(得分:4)

我认为默认行为是(请参阅此处的示例:http://mobileorchard.com/android-app-development-tabbed-activities/

建议的标签图像是暗的,以避免这种情况,使用白色和灰色作为字体颜色。

要进行更改,您必须创建自定义标签:

Custom tabs in android