Xamarin Blog
Pages
Home
Xamarin Android
Android
About Me
Friday, 1 February 2013
How to move cursor right side in edit text android ?
// this code will help you to move
private mEditext;
int cursorPos =mEditext.getSelectionStart();
cursorPos--;
if (cursorPos<0) cursorPos=0;
mEditext.setSelection(cursorPos);
Newer Posts
Older Posts
Home
Subscribe to:
Comments (Atom)