EditText默认不弹出软键盘

       在Android开发中,有时进入到一个有编辑框的页面时,软键盘会自动弹出来,这样会
非常影响用户的体验。下面就是怎样设置默认不弹出软键盘。下面就是怎样设置默认不弹出软
键盘。
   方法一、
      在AndroidManifest.xml文件中选择相应的activity,设置android:windowSoftInputMode="adjustUnspecified|stateHidden"
      例如:
        <activity android:name="com.example.share.MainActivity" 
            android:windowSoftInputMode="adjustPan">
        </activity>
方法二、
在java代码中使用clearFocus()方法让EditText失去焦点
例如:
	et_content = (EditText) findViewById(R.id.chat_content);
	et_content.clearFocus();
方法三、
强制性的隐藏Android的软键盘
	et_content = (EditText) findViewById(R.id.chat_content);
	InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
	imm.hideSoftInputFromWindow(et_content.getWindowToken(), 0);
    还有一个就是始终不弹出软键盘<pre name="code" class="java">        EditText edit=(EditText)findViewById(R.id.edit); edit.setInputType(InputType.TYPE_NULL);







                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值