8

I am making an Android application. In my application, I have to find the cursor position of a edittext. For example, I put the text "how are you" on edittext. If I click next to character 'a' then, I have to find the cursor now in front of 'a'.

How can I find out the cursor position and the character where cursor is placed?

David Cain
  • 15,340
  • 11
  • 64
  • 73
sarath
  • 3,141
  • 7
  • 35
  • 57

1 Answers1

24

Use getSelectionStart() method to get current position of cursor in an Edittext

Lucifer
  • 28,933
  • 23
  • 88
  • 140
Yugandhar Babu
  • 10,145
  • 9
  • 40
  • 67