0

我想在 TextView 中添加交互式图像,已经尝试了 ImageSpan 和 ImageGetter,但是无法按下与它们一起添加的图像。关于我如何获得这样的结果的任何建议:

在此处输入图像描述

4

1 回答 1

0

ClickableSpan 是您需要的:

http://developer.android.com/reference/android/text/style/ClickableSpan.html

如果这种类型的对象使用 LinkMovementMethod 的移动方法附加到 TextView 的文本,则可以选择受影响的文本范围。如果被点击,会调用 onClick(View) 方法

.

于 2012-12-23T13:49:20.867 回答