软件编程
位置:首页>> 软件编程>> Android编程>> Android禁止EditText自动弹出软键盘的方法及遇到问题

Android禁止EditText自动弹出软键盘的方法及遇到问题

作者:川峰  发布时间:2021-07-18 06:35:55 

标签:android,软键盘,edittext

平时开发中经常遇到的很小的问题,这里记录一下。

一般在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自动弹出软键盘的方法网站的支持!

来源:https://blog.csdn.net/lyabc123456/article/details/81076031

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com