gpt4 book ai didi

android - 如何自定义工具栏标题字体,我需要给工具栏标题两种不同的字体。

转载 作者:行者123 更新时间:2023-11-29 17:00:39 25 4
gpt4 key购买 nike

<分区>

假设我的标题是“Nearby - Friends”我想显示为“Nearby- friend ”

我怎样才能实现它。

我很累,但我做不到。

IMAGE REFERENCE

这里是我使用的代码,我使用字体

TextView text = (TextView) tab.getCustomView();
String subTitle = text.getText().toString().trim();
text.setTextColor(getResources().getColor(R.color.white));
Typeface face = Typeface.createFromAsset(getAssets(), "fonts/Roboto-Bold.ttf");
text.setTypeface(face);
TextView title = new TextView(getApplicationContext());
title.setText("Nearby - ");
title.setTypeface(face);
if (subTitle.equals("NEAR BY")) {
subTitle = "People";
} else if (subTitle.equals("FRIENDS")) {
subTitle = "Friends";
} else if (subTitle.equals("FAMILY")) {
subTitle = "Family";
}
toolbar.setTitle(title.getText().toString() + subTitle);

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