现在的位置: 首页 > 综合 > 正文

Android中的EditText默认时不弹出软键盘的方法

2013年10月18日 ⁄ 综合 ⁄ 共 1032字 ⁄ 字号 评论关闭

在做项目过程中 , 父 Activity 中 用 ViewPager 中 的子 Activity EditText默认弹出软键盘。这是想屏蔽 软键盘 应该从 父 Activity 中处理。处理子 Activity 达不到效果。

      在 父 Activity 中 onCreate 中加上

       getWindow().setSoftInputMode(   WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

       OK.


其他屏蔽软键盘方法:

方法一:
AndroidMainfest
.xml中选择哪个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="android.intent.action.MAIN" />

  < category android:name="android.intent.category.LAUNCHER" />

  < /intent-filter>

  < /activity>

【科学上网软件点击下载(能上youtube、facebook,享受google服务)】

方法二:让 EditText失去焦点,使用EditText的clearFocus方法

  例如:EditText edit=(EditText)findViewById(R.id.edit);

  edit.clearFocus();

方法三:强制隐藏Android输入法窗口

     例如:

    EditText edit=(EditText)findViewById(R.id.edit);

   
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);

    imm.hideSoftInputFromWindow(edit.getWindowToken(),0);

抱歉!评论已关闭.