0
点赞
收藏
分享

微信扫一扫

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



在做项目过程中 , 父 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"

label="@string/app_name"

windowSoftInputMode="adjustUnspecified|stateHidden"

android:configChanges="orientation|keyboardHidden">

< intent-filter>

action android:name="android.intent.action.MAIN" />

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


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


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

  edit.clearFocus();


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

     例如:

EditText

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

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


举报

相关推荐

0 条评论