文本 select 可以在 textView 中编辑但不可编辑
Text select able but not editable in the textView
我希望 textView 中的文本 select 能够复制,但不能粘贴或写入。 我想要防止用户在现有文本上书写或粘贴。我怎样才能做到这一点?
我在 xml 中使用了以下代码,但它没有达到目的。
<TextView
android:id="@+id/text_body_story"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text_body_story"
android:inputType="textMultiLine"
android:scrollHorizontally="false"
android:textSize="14sp"
android:textColorHighlight="#ffee04"
android:textIsSelectable="true"
android:longClickable="true"
android:padding="10dp"
android:layout_marginBottom="10dp"
/>
试试这个
android:inputType="none"
从您的 TextView
中删除 android:inputType
属性。拥有输入类型允许用户修改文本。
我希望 textView 中的文本 select 能够复制,但不能粘贴或写入。 我想要防止用户在现有文本上书写或粘贴。我怎样才能做到这一点?
我在 xml 中使用了以下代码,但它没有达到目的。
<TextView
android:id="@+id/text_body_story"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text_body_story"
android:inputType="textMultiLine"
android:scrollHorizontally="false"
android:textSize="14sp"
android:textColorHighlight="#ffee04"
android:textIsSelectable="true"
android:longClickable="true"
android:padding="10dp"
android:layout_marginBottom="10dp"
/>
试试这个
android:inputType="none"
从您的 TextView
中删除 android:inputType
属性。拥有输入类型允许用户修改文本。