对话框中忽略 Html 格式标签

发布于 2024-11-19 07:24:36 字数 256 浏览 3 评论 0原文

strings.xml 文件中的一些 Html 标记在 TextView 中使用时会正确呈现,因此,例如,以下文本资源将显示为粗体:

<string name="example_text"><b>This text is bold</b></string>

但是,如果在自定义对话框中使用相同的文本,则格式将被忽略。

有谁知道如何格式化对话框中滚动视图中的部分文本?

A few Html tags in the strings.xml file are rendered properly when used in a TextView, so for example, the following text resource would appear bold:

<string name="example_text"><b>This text is bold</b></string>

However, if the same text is used in a custom Dialog, the formatting is ignored.

Does anyone know how to format part of the text in a scrollview within a dialog box?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无声情话 2024-11-26 07:24:36

您可以通过在对话框中使用 WebView 来设置 HTML 格式:

strings.xml

<string name="example_text" formatted ="false"><![CDATA[ <strong> Example Text </strong> ]]></string>

java

String string = getString(R.string.example_text);
WebView wv = new WebView (getBaseContext());
wv.loadData(string, "text/html", "utf-8");
wv.setBackgroundColor(Color.WHITE);
wv.getSettings().setDefaultTextEncodingName("utf-8");
new AlertDialog.Builder(this)
 .setCancelable(false)
 .setView(wv)
 .setNeutralButton("OK", new DialogInterface.OnClickListener(){
    @Override
    public void onClick(DialogInterface dialog, int which) {
        dialog.cancel();

    }

  }) 
 .show(); 

You could format with HTML by using a WebView in the dialog:

strings.xml

<string name="example_text" formatted ="false"><![CDATA[ <strong> Example Text </strong> ]]></string>

java

String string = getString(R.string.example_text);
WebView wv = new WebView (getBaseContext());
wv.loadData(string, "text/html", "utf-8");
wv.setBackgroundColor(Color.WHITE);
wv.getSettings().setDefaultTextEncodingName("utf-8");
new AlertDialog.Builder(this)
 .setCancelable(false)
 .setView(wv)
 .setNeutralButton("OK", new DialogInterface.OnClickListener(){
    @Override
    public void onClick(DialogInterface dialog, int which) {
        dialog.cancel();

    }

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