Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

EditText's selectAll() helps selecting all the text of the widget. Now, my question is: "Is it possible to check whether all the text of the EditText has been selected?". In technical terms, I would like to implement isSelectAll() method on EditText. How is it possible?

Thanks in advance for your valuable answers and suggestions.

~ PCoder

share|improve this question

1 Answer

up vote 0 down vote accepted

How about something like this:

boolean isSelectAll() {
    return ((editText.getSelectionStart() == 0) && (editText.getSelectionEnd() == editText.getText().length()));
}
share|improve this answer
Thanks, I never played with the getSelectionStart and getSelectionEnd .. – PCoder Jun 14 '12 at 20:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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