使用 Html.fromHtml 设置自定义 Typeface
我发现 HTML.fromHtml 支持(据说)支持创建跨文本的 HTML 标签列表:
http://commonsware.com/blog/Android/2010/05/26/html-tags-supported-by-textview.html
现在有什么方法可以使用字体标签设置自定义字体吗?
I found this list of HTML-Tags that are (supposedly) supported for HTML.fromHtml to create a Spanned-Text:
http://commonsware.com/blog/Android/2010/05/26/html-tags-supported-by-textview.html
Now is there ANY way to set a custom Typeface with the Font-Tag?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用带有
face
属性的标签即可。至少从 Android 1.5 开始(查看源代码)。
face
属性的值将传递给TypefaceSpan (字符串)
构造函数 用于创建 Spannable。例如,使用“等宽字体”、“衬线字体”或“无衬线字体”。Simply use a
<font>
tag with aface
attribute. This has been possible since at least Android 1.5 (see source code).The value of the
face
attribute will be passed to theTypefaceSpan(String)
constructor to create the Spannable. For example, use "monospace", "serif", or "sans-serif".过时了。查看其他答案。
不,没有办法这样做。您可以 看一下
Html
实现。正如您将看到的,font
标记仅支持size
和color
。Outdated. See other answers.
No, there's no way to do so. You can take a look at the
Html
implementation. As you will see, thefont
tag supportssize
andcolor
only.