Android:我可以在 TextView 中使用混合格式文本吗
我需要在 Android 应用程序中使用混合格式文本
类似的东西
“嗨怎么样你”
也许即使有不同的颜色,
有没有办法从java代码的xml配置中做到这一点?
I need to have a mixed format text in Android app
something like
"Hi how are you"
maybe even with different colors
is there a way to do it from the xml configuration of from the java code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用 java 代码中的 SpannableString 类。
http://developer.android.com/reference/android/text/SpannableString.html
Yes, you can use
SpannableString
class from the java code.http://developer.android.com/reference/android/text/SpannableString.html
在这里查看本教程不同格式的文本
Check out this tutorial here Different Format Text