Kotlin - Создайте пользовательскую функцию ext для SpannableStringBuilder без повторяющихся аргументов при объявлении начала, конца и флешки для setSpans()
Это MainActivity.kt перед
var spannable = SpannableStringBuilder("$noColorText$coloredText")
spannable.setSpan(
ForegroundColorSpan(ContextCompat.getColor(textView.context, R.color.mainGreen)),
noColorText.length, spannable.length,
Spannable.SPAN_EXCLUSIVE_INCLUSIVE
)
spannable.setSpan(
StyleSpan(BOLD),
noColorText.length, spannable.length,
Spannable.SPAN_EXCLUSIVE_INCLUSIVE
)
textView.text = spannable
Вот мой подход до сих пор.
Extension.kt
// TODO: e.g: "string".putSpans(start, end, flags) { ForgroundColorSpan(color), StyleSpan(BOLD) }
fun String.putSpans(vararg flags: Int.() -> Unit, spanBuilder: SpannableStringBuilder.() -> Unit):
SpannableStringBuilder = SpannableStringBuilder(this).apply(spanBuilder)
MainActivity.kt
// TODO: Change SpannableBuilder to be modular (without, reinput duplicate args)
val resultSpan = "$noColorText$coloredText ".putSpans {
setSpan(ForegroundColorSpan(ContextCompat.getColor(textView.context, R.color.mainGreen)),
noColorText.length, this.length, // this is duplicate
Spannable.SPAN_EXCLUSIVE_INCLUSIVE) // this is duplicate
setSpan(StyleSpan(BOLD),
noColorText.length, this.length, // this is duplicate
Spannable.SPAN_EXCLUSIVE_INCLUSIVE) // this is duplicate
}
textView.text = resultSpan
Возможно ли создать такое расширение?
"string".putSpans(start, end, flags) { ForgroundColorSpan(color), StyleSpan(BOLD) }
поэтому нам не нужно использовать повторяющиеся аргументы начала, конца, а также флагов, но мы открыты для модификации, например:
"string".putSpans(start, end, flags) { // for default value
span(ForgroundColorSpan(color), diffStart, diffEnd),
span(StyleSpan(BOLD), diffFlags)
}
1 ответ
Решение
Вы можете использовать расширения, включенные в core-ktx
которые упрощают использование, в частности, строительство SpannedString
в котлин как так:
buildSpannedString {
bold {
append("hitherejoe")
}
}
Я думаю, вы бы использовали это так:
buildSpannedString {
bold {
inSpans(ForegroundColorSpan(ContextCompat.getColor(textView.context, R.color.mainGreen))) {
append("string")
}
}
}
См. Пакет androidx.text для справки.
Я взял пример из этой статьи от Джо Бёрча.