bas*_*ha 6 android contenteditable autocompletetextview
我想根据我的情况使自动完成 TextView 可编辑或不可编辑。
我将自动完成文本视图设为可编辑
constituency.setEnabled(true);
constituency.setInputType(InputType.TYPE_CLASS_TEXT);
constituency.setClickable(true);
Run Code Online (Sandbox Code Playgroud)
但它不起作用。
谁能帮帮我吗?
也许你正在寻找这个。
education.setKeyListener(null);
Run Code Online (Sandbox Code Playgroud)
将它设置回来只需将它放在某个方法中并调用
education.setKeyListener(TextKeyListener.getInstance());
Run Code Online (Sandbox Code Playgroud)