溫馨提示×

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

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

Android EditText不彈出輸入法焦點(diǎn)問(wèn)題的解決方法

發(fā)布時(shí)間:2021-11-26 14:04:54 來(lái)源:億速云 閱讀:258 作者:柒染 欄目:移動(dòng)開(kāi)發(fā)

Android EditText不彈出輸入法焦點(diǎn)問(wèn)題的解決方法,針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。

看一個(gè)manifest中Activity的配置,如果這個(gè)頁(yè)面有EditText,并且我們想要進(jìn)入這個(gè)頁(yè)面的時(shí)候默認(rèn)彈出輸入法,可以這樣設(shè)置這個(gè)屬相:android:windowSoftInputMode=stateVisible,這樣就會(huì)默認(rèn)彈起輸入法,當(dāng)然還有別的辦法。

<activity android:name=".ui.login"                   android:configChanges="orientation|keyboardHidden|locale"                   android:screenOrientation="portrait"                   android:windowSoftInputMode="stateVisible|adjustPan" >         </activity>

Android EditText 不彈出輸入法總結(jié)

方法一:

在AndroidMainfest.xml中選擇哪個(gè)activity,設(shè)置windowSoftInputMode屬性為adjustUnspecified|stateHidden

例如:

<activity android:name=".Main" android:label="@string/app_name" android:windowSoftInputMode="adjustUnspecified|stateHidden" android:configChanges="orientation|keyboardHidden"> < intent-filter> < action android:name="android.intent.action.MAIN" /> < category android:name="android.intent.category.LAUNCHER" /> < /intent-filter> < /activity>

方法二:

讓EditText失去焦點(diǎn),使用EditText的clearFocus方法

例如:

EditText edit=(EditText)findViewById(R.id.edit); edit.clearFocus();

方法三:

強(qiáng)制隱藏Android輸入法窗口

例如:

EditText edit=(EditText)findViewById(R.id.edit); InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(edit.getWindowToken(),0);

2.EditText始終不彈出軟件鍵盤(pán)

例:

EditText edit=(EditText)findViewById(R.id.edit); edit.setInputType(InputType.TYPE_NULL);

研究了下android中焦點(diǎn)Focus和彈出輸入法的問(wèn)題。在網(wǎng)上看了些例子都不夠全面,在這里全面總結(jié)下。

一:EditText為什么會(huì)默認(rèn)彈出輸入法?

同樣的代碼,碰到有EditText控件的界面時(shí)有的機(jī)子會(huì)彈出輸入法,有的機(jī)子不會(huì)彈出。不好意思,這問(wèn)題我也一頭霧水,誰(shuí)知道可以告訴我,否則我就把這個(gè)問(wèn)題留下來(lái),以后研究android  源碼時(shí)再搞個(gè)清楚。但是...我有解決方案。

二:默認(rèn)彈出和默認(rèn)關(guān)閉輸入法的解決方案。

1.默認(rèn)關(guān)閉,不至于進(jìn)入Activity就打開(kāi)輸入法,影響界面美觀。

①在布局文件中,在EditText前面放置一個(gè)看不到的LinearLayout,讓他率先獲取焦點(diǎn):

<LinearLayout android:focusable="true" android:focusableInTouchMode="true" android:layout_width="0px" android:layout_height="0px"/>

②方法二:先看一個(gè)屬性android:inputType:指定輸入法的類(lèi)型,int類(lèi)型,可以用|選擇多個(gè)。取值可以參考:android.text.InputType類(lèi)。取值包括:text,textUri,

phone,number,等.

Android SDK中有這么一句話“If the given content type is TYPE_NULL then a soft keyboard will not be displayed for this text view”,

先將EditText的InputType改變?yōu)門(mén)YPE_NULL,輸入法就不會(huì)彈出.然后再設(shè)置監(jiān)聽(tīng),再重新設(shè)置它的InputType.

editText.setOnTouchListener(new OnTouchListener() {                 public boolean onTouch(View v, MotionEvent event) {                      // TODO Auto-generated method stub                      int inType = editText.getInputType(); // backup the input type                      editText.setInputType(InputType.TYPE_NULL); // disable soft input                          editText.onTouchEvent(event); // call native handler                          editText.setInputType(inType); // restore input type                         return true;                                      }              });

2.默認(rèn)彈出。有時(shí)候按照需求可能要求默認(rèn)彈出輸入法。方案如下:

EditText titleInput = (EditText) findViewById(R.id.create_edit_title); titleInput.setFocusable(true);  titleInput.requestFocus();  onFocusChange(titleInput.isFocused()); private void onFocusChange(boolean hasFocus) { final boolean isFocus = hasFocus; (new Handler()).postDelayed(new Runnable() { public void run() { InputMethodManager imm = (InputMethodManager) titleInput.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); if(isFocus) { imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); } else { imm.hideSoftInputFromWindow(titleInput.getWindowToken(),0); } } }, 100); }

我覺(jué)得因?yàn)樵贏ndroid的主線程中對(duì)UI的操作無(wú)效,所以必須在Handler中實(shí)現(xiàn)彈出輸入法的操作。

三:關(guān)于焦點(diǎn)和輸入法的個(gè)人理解

獲取焦點(diǎn)是獲取焦點(diǎn),彈輸入法是彈輸入法。獲取焦點(diǎn)后并不一定會(huì)彈出輸入法,在網(wǎng)上搜了一圈,主流回答是“還有就是已開(kāi)啟界面就是focus的text的話有可能也是不行的,UI渲染是需要時(shí)間的”......

由于對(duì)源碼不懂,我對(duì)這一點(diǎn)也沒(méi)有個(gè)全面的認(rèn)識(shí)。只能將焦點(diǎn)和輸入法分成兩塊來(lái)處理。焦點(diǎn)的打開(kāi)和關(guān)閉特別簡(jiǎn)單。

焦點(diǎn)的獲取:

titleInput.setFocusable(true); titleInput.requestFocus();

焦點(diǎn)的取消:

titleInput.setFocusable(false);

四:關(guān)于經(jīng)常調(diào)用的處理軟鍵盤(pán)的函數(shù)如下:

1、打開(kāi)輸入法窗口:

InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); // 接受軟鍵盤(pán)輸入的編輯文本或其它視圖 imm.showSoftInput(submitBt,InputMethodManager.SHOW_FORCED);

2、關(guān)閉出入法窗口

InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); inputMethodManager.hideSoftInputFromWindow(OpeListActivity.this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); //接受軟鍵盤(pán)輸入的編輯文本或其它視圖 inputMethodManagerwww.2cto.com .showSoftInput(submitBt,InputMethodManager.SHOW_FORCED);

3、如果輸入法打開(kāi)則關(guān)閉,如果沒(méi)打開(kāi)則打開(kāi)

InputMethodManager m=(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); m.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);

4、獲取輸入法打開(kāi)的狀態(tài)

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); boolean isOpen=imm.isActive();

isOpen若返回true,則表示輸入法打開(kāi)

關(guān)于Android EditText不彈出輸入法焦點(diǎn)問(wèn)題的解決方法問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

向AI問(wèn)一下細(xì)節(jié)

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

AI