-1

我正在使用平板电脑模式下的电话应用程序。我想禁用软键盘,我们单击编辑文本。任何人都可以帮助我.. 提前致谢。

4

2 回答 2

1

在您的清单中:

   <activity android:name=".MainActivity" 

            android:windowSoftInputMode="stateHidden" />
于 2012-12-12T11:36:47.403 回答
1

用这个隐藏

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

用这个来表演

    InputMethodManager imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE); 
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
于 2012-12-12T11:44:06.783 回答