看一個manifest中Activity的配置,如果這個頁面有EditText,並且我們想要進入這個頁面的時候預設彈出IME,可以這樣設定這個屬相:android:windowSoftInputMode=stateVisible,這樣就會預設彈起IME,當然還有別的辦法。 <activity android:name=".ui.login" android:configChanges="orientation|keyboardHidden|locale" android:screenOrientation="portrait" android:windowSoftInputMode="stateVisible|adjustPan" > </activity> Android EditText 不彈出IME總結方法一: 在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(); 方法三: 強制隱藏AndroidIME視窗 例如: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和彈出IME的問題。在網上看了些例子都不夠全面,在這裡全面總結下。 一:EditText為什麼會預設彈出IME? 同樣的代碼,碰到有EditText控制項的介面時有的機子會彈出IME,有的機子不會彈出。不好意思,這問題我也一頭霧水,誰知道可以告訴我,否則我就把這個問題留下來,以後研究android源碼時再搞個清楚。但是...我有解決方案。 二:預設彈出和預設關閉IME的解決方案。 1.預設關閉,不至於進入Activity就開啟IME,影響介面美觀。 ①在布局檔案中,在EditText前面放置一個看不到的LinearLayout,讓他率先擷取焦點: <LinearLayout android:focusable="true" android:focusableInTouchMode="true" android:layout_width="0px" android:layout_height="0px"/> ②方法二:先看一個屬性android:inputType:指定IME的類型,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,IME就不會彈出.然後再設定監聽,再重新設定它的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.預設彈出。有時候按照需求可能要求預設彈出IME。方案如下: 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中實現彈出IME的操作。 三。關於焦點和IME的個人理解 擷取焦點是擷取焦點,彈IME是彈IME。擷取焦點後並不一定會彈出IME,在網上搜了一圈,主流回答是“還有就是已開啟介面就是focus的text的話有可能也是不行的,UI渲染是需要時間的”...... 由於對源碼不懂,我對這一點也沒有個全面的認識。只能將焦點和IME分成兩塊來處理。焦點的開啟和關閉特別簡單。 焦點的擷取: titleInput.setFocusable(true); titleInput.requestFocus(); 焦點的取消: titleInput.setFocusable(false); 四。關於經常調用的處理軟鍵盤的函數如下:<轉載> 1、開啟IME視窗: 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、如果IME開啟則關閉,如果沒開啟則開啟 InputMethodManager m=(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); m.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS); 4、擷取IME開啟的狀態 InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); boolean isOpen=imm.isActive(); isOpen若返回true,則表示IME開啟