在这个视频中,谷歌给出了一个String
基于Annotation
标签格式化部分的示例,该标签可用于在 in 中设置键/值String
对strings.xml
。
这是一个例子:
字符串.xml
<string name="test">Hello <annotation font="sans-serif-medium">World!</annotation></string>
科特林代码:
val spannedString = getText(R.string.title) as SpannedString
val annotations = spannedString.getSpans(0, spannedString.length, Annotation::class.java)
for (annotation in annotations) {
if (annotation.key == "font") {
val fontName = annotation.value
val typeFace: Typeface = ...
spannable.setSpan(TypefaceSpan(typeFace), abstract.getSpanStart(annotation),
abstract.getSpanEnd(annotation), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE)
}
}
这ReplacementSpan
在本文中也用于解决ReplacementSpans
无法流入下一行文本的问题。
我的问题是:
我需要动态创建/删除注释标签,以便我可以以编程方式从标有注释标签的文本部分中删除标签,或将标签添加到非注释文本中。
我怎样才能做到这一点?