Copy text from TextView on Android

前端 未结 6 1033
野趣味
野趣味 2020-12-02 21:10

I have a ListView where each item is a TextView.

I want to enable the long press behaviour similar to an EditText that display

6条回答
  •  攒了一身酷
    2020-12-02 21:47

    To allow users to copy some or all of the TextView's value and paste it somewhere else,

    set the XML attribute {@link android.R.styleable#TextView_textIsSelectable android:textIsSelectable} to "true"

    or

    call {@link #setTextIsSelectable setTextIsSelectable(true)}.

提交回复
热议问题