TextView实现选中复制到系统粘贴板
Posted 浪浪暖男
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TextView实现选中复制到系统粘贴板相关的知识,希望对你有一定的参考价值。
这是xml文件的代码。
<TextView
android:id="@+id/main_tv"
android:textSize="25sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textIsSelectable="true"
android:text="@string/app_name"/>
其实很简单,只需要设置一个属性
android:textIsSelectable="true"即可。
以上是关于TextView实现选中复制到系统粘贴板的主要内容,如果未能解决你的问题,请参考以下文章