防止弹出默认键盘

时间:2015-11-26 10:33:07

标签: android android-layout

我有一个编辑文本框和我自己的键盘布局,我使用此链接阻止了弹出默认键盘

  

How do I prevent the software keyboard from popping up?

但它正在禁用光标并单击我想要复制粘贴的编辑文本。请帮忙。

2 个答案:

答案 0 :(得分:0)

试试这个..

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editTextField.getWindowToken(), 0);

答案 1 :(得分:0)

将此内容写入AndroidManifest.xml

<activity
        android:name="com.example.LiveStreamActivity"
        android:configChanges="orientation|keyboardHidden|screenSize"
        android:label="@string/title_activity_live_stream"
        android:screenOrientation="landscape"/>