TextView 实现复制文本功能

Posted 疯子FK

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TextView 实现复制文本功能相关的知识,希望对你有一定的参考价值。

android api 11 以后可以直接设置

android:textIsSelectable="true"

<TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:textSize="16sp"
        android:text="Hello World"
        android:gravity="center"
        android:textIsSelectable="true"
        />

 

以上是关于TextView 实现复制文本功能的主要内容,如果未能解决你的问题,请参考以下文章

调整片段中 TextView 的文本大小

从多个 TextView 中选择文本

在 TextView 中选择 + 复制文本?

动态 TextView 未在片段中更新

Kotlin 实现长按TextView弹出自定义复制+全选框+PopupWindow的功能

转TextView长按复制实现方法小结