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

后端 未结 9 1870
旧时难觅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:27

    1. use theme

      @android:style/Theme.Black.NoTitleBar.Fullscreen
      

      or

      @android:style/Theme.WithActionBar
      
    2. set TextView in xml

      android:textIsSelectable="true"
      
    3. see result

提交回复
热议问题