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.

I have a edittext in which some text are selected . I want to get only selected text from edittext on click of button .

Please suggest me usable link or sample code.

share|improve this question
Search – adneal Apr 9 '12 at 8:37
1  

2 Answers

up vote 7 down vote accepted
EditText et=(EditText)findViewById(R.id.edit);

int startSelection=et.getSelectionStart();
int endSelection=et.getSelectionEnd();

String selectedText = et.getText().substring(startSelection, endSelection);
share|improve this answer
after it if u want to check whether selectedtext is empty or not. you must use isEmpty function . – Sushant Apr 9 '12 at 8:50
trim() will also do. – hotveryspicy Apr 9 '12 at 8:52
getSelectionStart()
getSelectionEnd()

see this link

share|improve this answer

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.