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"
        />

 

posted @ 2016-05-31 15:11  疯子FK  阅读(7269)  评论(0编辑  收藏  举报