标签: java android colors kotlin spannable
我可以在不使用Spannable的情况下以某种方式为EditText内的文本着色吗? 我会很高兴任何链接。 现在我将Regex用于搜索关键字并动态为EditText内的文本着色。 (我使用Kotlin coroutines)
Kotlin coroutines
Editable.setSpan(new ForegroundColorSpan(color), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
但是当我从大型文本文件600+行打开文本时,我的UI开始变慢。