gpt4 book ai didi

android - 如何在android中更改Tabhost的字体系列

转载 作者:行者123 更新时间:2023-11-30 02:01:47 24 4
gpt4 key购买 nike

我想将默认字体系列更改为我的字体系列。这是可能的?请帮助我

谢谢。

enter image description here

最佳答案

设置字体等:

for (int i = 0; i < mTabHost.getTabWidget().getChildCount(); i++) {
Typeface tf = Typeface.createFromAsset(this.getAssets(),"fonts/my_bolditalic.ttf");
final TextView tv = (TextView) mTabHost.getTabWidget().getChildAt(i).findViewById(android.R.id.title);
tv.setTypeface(tf);
tv.setTextColor(Color.GREEN);
mTabHost.getTabWidget().getChildAt(i).setBackground(getResources().getDrawable(R.drawable.bg_tab_selector));
}

关于android - 如何在android中更改Tabhost的字体系列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31355466/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com