gpt4 book ai didi

android - 如何在android中的textview中设置双文本样式?

转载 作者:行者123 更新时间:2023-11-30 03:31:43 25 4
gpt4 key购买 nike

我正在使用字体,我想将其设为粗体,但它没有变粗,如果在文本中设置字体,如何设置文本样式。

century_gothic = Typeface.createFromAsset(context.getAssets(), "century_gothic.ttf");
TextView dialog_text = (TextView)layout.findViewById(R.id.textdialog);
dialog_text.setText(text);
dialog_text.setTypeface(CustomDialog.century_gothic);
dialog_text.setTypeface(Typeface.DEFAULT_BOLD);

最佳答案

代替:

dialog_text.setTypeface(Typeface.DEFAULT_BOLD);

使用:

Typeface century_gothic_bold = Typeface.create(century_gothic, Typeface.BOLD);  
dialog_text.setTypeface(century_gothic_bold);

关于android - 如何在android中的textview中设置双文本样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17342898/

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