设置TextView可复制

设置TextView的属性 enable,focusable, longClickable and textIsSelectable
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text=""
    android:id="@+id/pwTextView"
    android:enabled="true"
    android:textIsSelectable="true"
    android:focusable="true"
    android:longClickable="true" />

posted @ 2016-12-05 15:48  清澈见底  阅读(108)  评论(0编辑  收藏  举报