Android默认剪切/复制/粘贴未显示在EditText中

时间:2017-03-04 15:31:00

标签: android android-edittext

我正在使用WindowManager将EditText添加到窗口中。但是,长按EditText什么都不做。它选择我长按的单词,然后立即将光标放在所述单词的前面。这是唯一经历的行为。

我没有代码,因为它很直接。简单的布局,简单的windowManager.addView(myView, myParams);方法。如何启用长按工作?

1 个答案:

答案 0 :(得分:0)

将其放在editText小部件

android:textIsSelectable="true"

或者如果您更喜欢以编程方式

myEditText.setTextIsSelectable(true);

同时设置

setfocusableintouchmode(true)

也应该考虑一下 Copy and Paste