I'm looking for a way to detect a cursor position changed in an EditText. I couldn't find anything in the documentation so far. Has anyone solved this already?
+1
A:
You can override onSelectionChanged (int selStart, int selEnd) to get notified about selection changes. If the cursor is moved, this is called as well (in this case selStart == selEnd)
Thorstenvv
2010-09-06 16:41:41
Thanks. Stupid me. I must have missed that :-(
znq
2010-09-06 17:39:49