How to make an EditText selectable but not editable on Android Ice Cream Sandwich?

后端 未结 4 1648
甜味超标
甜味超标 2021-02-07 03:15

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

4条回答
  •  广开言路
    2021-02-07 04:15

    text.setTextIsSelectable(true) requires API 11. For those using lower API's: In xml use:

    android:inputType="none"
    android:textIsSelectable="true"
    

    This will make your EditText uneditable but selectable.

提交回复
热议问题