我试图用EditText模仿TextView [因为我无法从TextView中获取所选文本]。要做到这一点
我在xml中完成了这个:
android:selectable="true"
android:editable="false"
android:focusable="false"
android:focusableInTouchMode="false"
android:cursorVisible="false"
这在代码中:
text.setTextIsSelectable(true);
这是我得到的:
如何摆脱RED PART?