How do I enable standard copy paste for a TextView in Android?

后端 未结 9 1885
旧时难觅i
旧时难觅i 2020-11-27 03:09

I want to enable standard copy paste for a TextView (the same as for EditText). How can I do it?

I tried using a non-editable EditText but it didn\'t work well (some

9条回答
  •  日久生厌
    2020-11-27 03:25

    To enable the standard copy/paste for TextView, U can choose one of the following:

    1. Change in layout file: add below property to your TextView

      android:textIsSelectable="true"

    2. In your Java class write this line to set it programmatically. myTextView.setTextIsSelectable(true);

    And long press on the TextView you can see copy/paste action bar.

提交回复
热议问题