Closed open9527 closed 5 years ago
https://github.com/Blankj/AndroidUtilCode/issues/504 这两个属性设置了吗,貌似新版本我已经封装进去了,图片点击事件我没试过
文本是可以的,但是图片是不行
给你个解决方案
var create = SpanUtils()
.appendImage(R.drawable.span_shape_block_high, SpanUtils.ALIGN_BOTTOM)
.create()
SpanUtils.with(spanAboutTv)
.append(create)
.setClickSpan(object: ClickableSpan() {
override fun onClick(widget: View?) {
ToastUtils.showLong("haha")
}
}).create()
后续我看有没有啥解决方案
@open9527 1.24.6 版本已支持点击事件
有没有办法使用spanUtils实现图文混排啊,需求是聊天室消息列表,用户头像+昵称+消息内容,用户头像是网络图片
图片下载到本地,使用 bitmap 即可
Describe the bug
A clear and concise description of what the bug is.
The code of bug
无法响应点击事件
put the stack of crash here