I try to handle these word in EditText selected(marked) by user.
Code list:
EditText view = (EditText)findViewById(R.id.edt);
Editable edt = view.getText();
The edt object have member as mSpanStarts[]、MSpanEnds[];but I can’t get them because they are privated.
So my question is how to get these selected word from Editable class.