I have a ListView in Activity, and in each item , I insert an EditText for show my text. I need drag the handle to select text & copy the text, but can not edit text. On And
text.setTextIsSelectable(true) requires API 11. For those using lower API's: In xml use:
text.setTextIsSelectable(true)
android:inputType="none" android:textIsSelectable="true"
This will make your EditText uneditable but selectable.