Hello Everyone, I have a Text View in my application and I want to select text from that text view and i want the starting & ending position of that selected text so can anyone please help me.
A:
I'm not sure there's any way of programmatically making a selection in a TextView
.
However, you can get the start and end position of a selection by calling TextView.getSelectionStart()
, optionally calling hasSelection()
first if you want.
Christopher
2010-07-26 11:08:57
+2
A:
Starting and Ending position may be retrieved with:
int selectionStart = textView.getSelectionStart();
int selectionEnd = textView.getSelectionEnd();
and Selected text may be with:
String selectedText = et.getText().substring(selectionStart, selectionEnd);
PM - Paresh Mayani
2010-07-26 12:20:24