EditText模仿TextView?

时间:2013-09-05 21:51:32

标签: android xml textview android-edittext

我试图用EditText模仿TextView [因为我无法从TextView中获取所选文本]。要做到这一点

我在xml中完成了这个:

    android:selectable="true"
    android:editable="false"
    android:focusable="false"
    android:focusableInTouchMode="false"
    android:cursorVisible="false"

这在代码中:

text.setTextIsSelectable(true);

这是我得到的: enter image description here

如何摆脱RED PART?

0 个答案:

没有答案