如何更改 EditText 中所选单词的颜色
how to change color of the selected words in EditText
我正在创建一个文本编辑器,我不会让用户 select EditText 中的一些单词并更改 selected 单词的颜色,
我怎样才能做到这一点?或者我如何理解哪些词,用户 selected?谢谢
使用 getSelectionStart and getSelectionEnd 获取活动选择。
使用SpannableString and SpannableString.setSpan to colorize the selection using a ForegroundColorSpan.
我正在创建一个文本编辑器,我不会让用户 select EditText 中的一些单词并更改 selected 单词的颜色, 我怎样才能做到这一点?或者我如何理解哪些词,用户 selected?谢谢
使用 getSelectionStart and getSelectionEnd 获取活动选择。
使用SpannableString and SpannableString.setSpan to colorize the selection using a ForegroundColorSpan.