ActivityStack icon indicating copy to clipboard operation
ActivityStack copied to clipboard

Results 1 ActivityStack issues
Sort by recently updated
recently updated
newest added

使用下来,发现,在 `val tmp = mainContent.substring(start, end)`,`autoSet(index)`中的`val msg = "${mainContent.substring(0, index)}$suffix"`这两处的代码,会导致`CharSequence`类型的mainContent变成String,丢失掉span样式,建议改成 ``` val tmp = mainContent.subSequence(start, end) val context = SpannableStringBuilder().append( tmp ).append( suffix ) ```