Android禁止软键盘自动弹出
在当前布局文件里添加一个TextView控件
<TextView android:id="@+id/config_hidden" android:layout_width="wrap_content" android:layout_height="wrap_content" android:focusable="true" android:focusableInTouchMode="true" />
在Activity里添加
TextView config_hidden = (TextView) this.findViewById(R.id.config_hidden); config_hidden.requestFocus();