文本选择能够但不能在textView中编辑
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文本选择能够但不能在textView中编辑相关的知识,希望对你有一定的参考价值。
我希望textView中的文本选择能够复制,但不能粘贴或写入。我想阻止用户写入或粘贴现有文本。我怎样才能做到这一点?
我在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
中删除TextView
属性。具有输入类型是允许用户修改文本的内容。
另一答案
试试这个
android:inputType="none"
以上是关于文本选择能够但不能在textView中编辑的主要内容,如果未能解决你的问题,请参考以下文章