时间:2021-05-19
平时开发中经常遇到的很小的问题,这里记录一下。
一般在AndroidManifest.xml中添加了android:windowSoftInputMode="adjustResize"或者adjustPan的话,页面中包含EditText控件进入时会自动弹出软件盘。
1.在包含EditText的父布局中添加android:focusable="true"和android:focusableInTouchMode="true"
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:focusable="true" android:focusableInTouchMode="true" > <EditText android:id="@+id/edit" android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="text" android:maxLines="1" /></LinearLayout>这样可以禁止自动弹出软键盘
2.在AndroidManifest.xml中添加stateHidden,这样也不会自动弹出
<activity android:name=".TestAActivity" android:windowSoftInputMode="adjustResize|stateHidden"></activity>3.进入页面强制隐藏软键盘
如果前两种方法都不起作用的话,可以使用这种方法:
/** * 隐藏输入软键盘 * @param context * @param view */ public static void hideInputManager(Context context,View view){ InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE); if (view !=null && imm != null){ imm.hideSoftInputFromWindow(view.getWindowToken(), 0); //强制隐藏 } }总结
以上所述是小编给大家介绍的Android禁止EditText自动弹出软键盘的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Android设置Edittext获取焦点并弹出软键盘/***EditText获取焦点并显示软键盘*/publicstaticvoidshowSoftInput
android点击EditText始终不弹出软件键盘场景描述:正常情况下,当点击EditText时,软键盘会弹出来。现在的要求是当点击EditText时,弹日期
问题:今天公司项目处理一个软键盘弹出的逻辑,要求点击按钮之后弹出软键盘。实现代码如下://获取焦点editText.setFocusable(true);edi
隐藏软键盘一直是我头痛的事情,没有找到一种真正能隐藏的方法。点击EditText的时候总是弹出软键盘。-----杯具杯具(一):InputMethodManag
最近遇到一个关于android软键盘的问题。在ListView中每个Item中都有个EditText,在最后的几个Item中,EditText第一次点击界面还能