如何更改android中tabhost的字体大小
如何更改选项卡的字体大小?我为选项卡扩展了 TabActivity。
How can the font size of the tabs be changed? I extend TabActivity for the tabs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以定义主题,使用样式来实现此目的:
首先,在
res/values/styles.xml 中为您的
:Activity
创建主题(名称:CustomTheme
)然后在您的
androidManifest.xml
中为您的TabActivity
或包含TabWidget
的Activity
指定上述主题code>:这将为您提供您想要的输出(当然您应该根据您的喜好更改大小和样式)。
You can define themes, use styles to achieve this:
First you create the theme (name:
CustomTheme
) for yourActivity
in yourres/values/styles.xml
:Then in your
androidManifest.xml
you specify the theme above for yourTabActivity
orActivity
containing yourTabWidget
:This will serve you with the output you want (of course you should change the size and style for your preference).
它不漂亮,但尝试这个肮脏的修复:
或
Its not pretty but try this Dirty Fix :
or
稍微概括一下:
Slightly generalized:
我在我的代码中使用了这段代码,但它仅对第一个选项卡有效,其他 3 个选项卡仍然不变。
i use this piece of code in my Code but it effect only on first Tab the other 3 Tabs are still unchanged.