标签: android kotlin
我正在尝试在android studio中的editText中获取标记文本的开始和结束索引。
答案 0 :(得分:1)
获取selectionStart和selectionEnd:
selectionStart
selectionEnd
val startIndex = editText.selectionStart val endIndex = editText.selectionEnd
答案 1 :(得分:0)
您需要使用此类选择
https://developer.android.com/reference/android/text/Selection
尝试其中的方法