android ProgressDialog字体大小改变

发布于 2024-11-19 02:21:34 字数 323 浏览 5 评论 0原文

是否可以更改字体大小并使在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何必那么矫情 2024-11-26 02:21:34

如果您 import android.text.Html; 那么您将能够使用 Html.fromHtml() 方法来执行此操作,如下所示:

private ProgressDialog dialog;
this.dialog = ProgressDialog.show(Activity.this, Html.fromHtml(
               "<b>Heading<b>"), Html.fromHtml("<big>Message...</big>"), true);

您还应该能够使用其他 Html 文本格式标记,如 >等等,显然你可以像任何其他 html 文本一样混合和匹配它们。

If you import android.text.Html; then you will be able to use the Html.fromHtml() method to do it, like so:

private ProgressDialog dialog;
this.dialog = ProgressDialog.show(Activity.this, Html.fromHtml(
               "<b>Heading<b>"), Html.fromHtml("<big>Message...</big>"), true);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文