Android中EditTex焦點設定和彈不彈出輸入法的問題
引用自:http://www.cnblogs.com/carmanloneliness/archive/2012/07/30/2615823.html
今天程式設計碰到了一個問題:有一款平板,開啟一個有EditText的Activity會預設彈出輸入法。為了解決這個問題就深入研究了下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);
//接受軟鍵盤輸入的編輯文字或其它檢視inputMethodManager
.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隱藏/自動彈出輸入法的問題Android
- JS窗體彈出問題輸入答案_promptJS
- win10玩遊戲老是彈出輸入法怎麼辦 玩遊戲shift鍵老彈出輸入法Win10遊戲
- android 軟鍵盤 輸入法 彈出引起的各種不適終極解決方案Android
- iOS解決鍵盤彈出遮擋輸入框問題iOS
- Android軟鍵盤彈出,覆蓋h5頁面輸入框問題AndroidH5
- Android中的EditText預設時不彈出軟鍵盤的方法Android
- Android之Window和彈窗問題Android
- JavaScript文字框獲取焦點彈出tipsJavaScript
- 輸入法擋住輸入框和點選空白處把手機的輸入法影藏(焦點處理)
- 設定代理後開啟應用老是彈出提示框要輸入使用者名稱和密碼的問題。密碼
- Android點選列表後彈出輸入框,所點選項自動滾動到輸入框上方Android
- fixed定位和input獲取焦點影響鍵盤彈出效果
- QToolButton設定彈出選單QT
- win10打遊戲輸入法老是彈出來怎麼辦 win10打遊戲老是輸入法彈出處理方法Win10遊戲
- 直播平臺原始碼,關於彈出框中輸入框被遮擋問題解決原始碼
- android:listView Button 焦點問題AndroidView
- Android 9.0 預設輸入法的設定流程分析Android
- 彈彈彈,彈走魚尾紋的彈出選單(vue)Vue
- win10遊戲裡輸入法總是自動彈出的解決方法Win10遊戲
- h5單頁面彈出彈窗背景滾動問題H5
- Flutter_Webview 鍵盤彈出問題FlutterWebView
- windows連線代理伺服器,總是彈出輸入使用者名稱和密碼的框的問題Windows伺服器密碼
- Android實現人人網點選“+”彈出效果Android
- Antd的message.error 彈出的視窗不會關閉的問題Error
- win 11取消鎖屏的彈出的廣告設定
- Vim中輸入法與編碼設定
- Win10輸入法設定方法_win 10 輸入法如何設定Win10
- windows10輸入法怎麼設定_win10輸入法設定的方法WindowsWin10
- android的EditText,焦點會預設在第一個EditText中,我不希望焦點預設在任何EditText中,如何做?Android
- 直播商城原始碼,AlertDialog.Builder 設定點選不關閉彈框原始碼UI
- 關於頁面中彈窗的定位問題
- 解決彈出層被Flash擋住的問題
- UITextView定製彈出選單UITextView
- javascript點選彈出可以關閉帶有灰色背景彈出層JavaScript
- win10怎樣設定輸入法_win10設定輸入法的步驟Win10
- win10電腦玩遊戲總是彈出輸入法視窗如何解決Win10遊戲
- Win10怎麼設定預設的輸入法為百度輸入法 百度輸入法恢復預設設定Win10