首页 > 代码库 > TextView实现选中复制到系统粘贴板

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实现选中复制到系统粘贴板