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);
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment