带图像示例的 SpannableString
我正在寻找如何使用 ImageSpan 构建和显示 Android SpannableString 的示例。像笑脸的内联显示之类的东西。
多谢。
I am looking for an example of how to build and display Android SpannableString with ImageSpan. Something like inline display of smileys.
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
发现以下内容,它似乎可以完成工作:
Found the following and it seems to do the job:
SpannableString + ImageSpan 在 Android API 21 和 Android API 21 中不起作用22(我在模拟器中的 Android Studio 1.2.1.1 中进行了测试),但如果你这样做:
SpannableString + ImageSpan 将起作用。
我受到这篇文章的启发:https://stackoverflow.com/a/26959656/3706042
SpannableString + ImageSpan don't work in Android API 21 & 22 (I tested in Android Studio 1.2.1.1 in emulator), but if you do this:
SpannableString + ImageSpan will work.
I was inspired by this post: https://stackoverflow.com/a/26959656/3706042
如果有人仍然感兴趣,我创建了一个 Java 方法,允许基于“要替换的字符串”。
用法:
If anyone is still interested, I've created the a Java method to allow adding recursively a listed drawables to a text (set at the end to a textView) based on a "string to replace".
Usage: