You can use either the xml attribute android:cursorVisible="false" or programatically:
- java:
view.setCursorVisible(false) - kotlin:
view.isCursorVisible = false
You can use either the xml attribute android:cursorVisible="false" or programatically:
view.setCursorVisible(false)view.isCursorVisible = false