requestFocus() moves cursor to edit box, but does not highlight it. I want to highlight it like as if it was touched.

link|improve this question

67% accept rate
Hm.. I created a simple use case, and it works as expected with requestFocus(). Need to clarify what is going in real scenario. – alex2k8 Jan 21 '10 at 1:47
feedback

2 Answers

Try this:

_field.setSelection( int startIndex, int endIndex);

The first parameter startIndex is the point in the string where you want to begin highlighting and the endIndex parameter is the point where you want to stop highlighting.

If you want to select all of the text use this instead:

_field.selectAll();
link|improve this answer
1  
Sorry, seems I was not explicit enought... I am talking about highlighting around the edit area, not the text selection. – alex2k8 Jan 21 '10 at 1:48
feedback

I found a bug. My code was some thing like this:

edit = new EditText();
edit.requestFocus()
container.addView(edit);

It moved cursor to new 'edit', but did not highlight it. This fixed it:

edit = new EditText();
container.addView(edit);
edit.requestFocus();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.