在Android Studio Kotlin的Edittext中获取标记文本的索引

时间:2019-01-26 18:17:14

标签: android kotlin

This is what I mean with marked text.

我正在尝试在android studio中的editText中获取标记文本的开始和结束索引。

2 个答案:

答案 0 :(得分:1)

获取selectionStartselectionEnd

val startIndex = editText.selectionStart
val endIndex = editText.selectionEnd

答案 1 :(得分:0)

您需要使用此类选择

https://developer.android.com/reference/android/text/Selection

尝试其中的方法