方法一:
在中选择哪个activity,设置windowSoftInputMode属性为adjustUnspecified|stateHidden
例如:
<activity android:name=".Main"
android:label="@string/app_name"
android:windowSoftInputMode="adjustUnspecified|stateHidden"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="" />
<category android:name="" />
</intent-filter>
</activity>
方法二:
让EditText失去焦点,使用EditText的clearFocus方法
例如:
EditText edit=(EditText)findViewById();
();
方法三:
强制隐藏Android输入法窗口
例如:
EditText edit=(EditText)findViewById();
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
((),0);
始终不弹出软件键盘
例:
EditText edit=(EditText)findViewById();
(InputType.TYPE_NULL);
方法四:焦点拦截法(自己所得)
在layout的xml文件中设置EditText的上级控件android:focusable="true"
android:focusableInTouchMode="true";
同时edittext控件android:focusable="true"
即可将焦点拦截,让EditText不自动获取焦点。