溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android中怎么禁止EditText自動彈出軟鍵盤

發(fā)布時間:2021-07-12 11:51:25 來源:億速云 閱讀:261 作者:Leah 欄目:移動開發(fā)

這期內(nèi)容當中小編將會給大家?guī)碛嘘P(guān)Android中怎么禁止EditText自動彈出軟鍵盤,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

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自動彈出軟鍵盤了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI