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

后端 未结 4 1642
甜味超标
甜味超标 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:10

    I resolved this problem.
    Just set TextView like this:

    text.setTextIsSelectable(true);
    

提交回复
热议问题