android ProgressDialog字体大小改变
是否可以更改字体大小并使在 ProgressDialog
中显示的文本变为粗体。我创建了一个 ProgressDialog
,如下所示:
private ProgressDialog dialog;
this.dialog = ProgressDialog.show(Activity.this, "Heading","Message...", true);
我想要 Heading< /strong> 粗体并增加字体大小..请帮助
Is it possible to change the font size and make text bold which is displayed in a ProgressDialog
.I have created a ProgressDialog
like this:
private ProgressDialog dialog;
this.dialog = ProgressDialog.show(Activity.this, "Heading","Message...", true);
I want to make Heading bold and increase the font size..pls help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您
import android.text.Html;
那么您将能够使用Html.fromHtml()
方法来执行此操作,如下所示:您还应该能够使用其他 Html 文本格式标记,如
>等等,显然你可以像任何其他 html 文本一样混合和匹配它们。
If you
import android.text.Html;
then you will be able to use theHtml.fromHtml()
method to do it, like so:You should also be able to use other Html text formatting tags like
<small>
<u>
<i>
<sub>
etc., and obviously you can mix and match them like any other html text.