91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Android EditText不彈出輸入法焦點問題的解決方法

發布時間:2021-11-26 14:04:54 來源:億速云 閱讀:260 作者:柒染 欄目:移動開發

Android EditText不彈出輸入法焦點問題的解決方法,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

看一個manifest中Activity的配置,如果這個頁面有EditText,并且我們想要進入這個頁面的時候默認彈出輸入法,可以這樣設置這個屬相:android:windowSoftInputMode=stateVisible,這樣就會默認彈起輸入法,當然還有別的辦法。

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

Android EditText 不彈出輸入法總結

方法一:

在AndroidMainfest.xml中選擇哪個activity,設置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失去焦點,使用EditText的clearFocus方法

例如:

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

方法三:

強制隱藏Android輸入法窗口

例如:

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

2.EditText始終不彈出軟件鍵盤

例:

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

研究了下android中焦點Focus和彈出輸入法的問題。在網上看了些例子都不夠全面,在這里全面總結下。

一:EditText為什么會默認彈出輸入法?

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

二:默認彈出和默認關閉輸入法的解決方案。

1.默認關閉,不至于進入Activity就打開輸入法,影響界面美觀。

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

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

②方法二:先看一個屬性android:inputType:指定輸入法的類型,int類型,可以用|選擇多個。取值可以參考:android.text.InputType類。取值包括: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改變為TYPE_NULL,輸入法就不會彈出.然后再設置監聽,再重新設置它的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.默認彈出。有時候按照需求可能要求默認彈出輸入法。方案如下:

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); }

我覺得因為在Android的主線程中對UI的操作無效,所以必須在Handler中實現彈出輸入法的操作。

三:關于焦點和輸入法的個人理解

獲取焦點是獲取焦點,彈輸入法是彈輸入法。獲取焦點后并不一定會彈出輸入法,在網上搜了一圈,主流回答是“還有就是已開啟界面就是focus的text的話有可能也是不行的,UI渲染是需要時間的”......

由于對源碼不懂,我對這一點也沒有個全面的認識。只能將焦點和輸入法分成兩塊來處理。焦點的打開和關閉特別簡單。

焦點的獲取:

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

焦點的取消:

titleInput.setFocusable(false);

四:關于經常調用的處理軟鍵盤的函數如下:

1、打開輸入法窗口:

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

2、關閉出入法窗口

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

3、如果輸入法打開則關閉,如果沒打開則打開

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

4、獲取輸入法打開的狀態

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

isOpen若返回true,則表示輸入法打開

關于Android EditText不彈出輸入法焦點問題的解決方法問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

鹤山市| 房产| 婺源县| 潼南县| 临洮县| 三原县| 荔浦县| 潞城市| 泸定县| 朝阳区| 西华县| 洛扎县| 阿拉善盟| 江门市| 都江堰市| 黄骅市| 牡丹江市| 武穴市| 恩平市| 伊吾县| 安图县| 南昌市| 绍兴县| 东乌珠穆沁旗| 内黄县| 郁南县| 利津县| 呼伦贝尔市| 肇州县| 二连浩特市| 博湖县| 武鸣县| 三河市| 金阳县| 集安市| 天水市| 蒲江县| 岢岚县| 平邑县| 玛曲县| 唐山市|