对话框中忽略 Html 格式标签
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过在对话框中使用 WebView 来设置 HTML 格式:
strings.xml
java
You could format with HTML by using a WebView in the dialog:
strings.xml
java