简体   繁体   中英

Get index of marked text in Edittext, Android studio kotlin

这就是我带有标记文本的意思。

I'm trying to get the start and end index for the marked text in my editText in android studio.

Get selectionStart and selectionEnd :

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

You need to make use of this class Selection

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

Try out method from it

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM