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>
方法一:
在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 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不彈出輸入法總結,焦點問題的總結
看一個manifest中Activity的配置,如果這個頁面有EditText,並且我們想要進入這個頁面的時候預設彈出輸入法,可以這樣設定這個屬相:android:windowSoftInputMode=stateVisible,這樣就會預設彈起輸入法,當然還有別的辦法。
Android EditText 不彈出輸入法總結
方法一: 在AndroidMainfest.xml中選擇哪個activity,設定windowSoftInputMode屬性為adjustUnspecified|stateHidden 例如:<activity android:name=".Main"
Android 關於 EditText 的一些問題 如:不彈出輸入法
2.EditText 始終不彈出軟體鍵盤 例:EditText edit=(EditText)findViewById(R.id.edit); edit.setInputType(InputType.TYPE_NULL);Android 的 EditText inputtypeAndroid 中 input
Android中EditTex焦點設定和彈不彈出輸入法的問題
今天程式設計碰到了一個問題:有一款平板,開啟一個有EditText的Activity會預設彈出輸入法。為了解決這個問題就深入研究了下android中焦點Focus和彈出輸入法的問題。在網上看了些例子都不夠全面,在這裡全面總結下。 一:EditText為什麼會預設彈出輸
android中自定義的dialog中的EditText無法彈出輸入法解決方案
dialog.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);//彈出輸入法,並且寫在show()方法之後。 解決Dialog 消失,輸入法不消失的問題: 參考:https://blog.csd
Android EditText 設定彈出數字輸入法鍵盤
首先設定只能輸入數字: <EditText ="@+id/edit_digit_input" android:layout_width="wrap_content" android:layout_height="wrap_conten
在手機端點選input框不彈出輸入法的方法
1、使用CSS樣式 : input { pointer-events: none; } 2、 使用事件阻止 : input.onmousedown = function (e) { e.preve
Android 中不彈出軟鍵盤的方法
在android UI開發中,有時候一進入activity中就會自動彈出軟鍵盤,這就有點煩人了。其實,稍微設定下就可以不讓軟鍵盤彈出來。 方法一:在清單檔案中,對應的activity中設定android:windowSoftInputMode屬性 android:
Android的EditText自動獲取焦點並彈出輸入法問題
1.每次啟動新的Activity的時候,輸入法總是彈出來,太煩人了。 主要原因就是頁面上方有個EditTexit,每次都自動獲取焦點。 注意要求是:每次啟動新的Activity的時候,EditTexit不要獲取到焦點或者獲取到焦點也不讓輸入法彈出來,並不是阻止輸入法使用。只
EditText獲取焦點不彈出InputWindow
原文連結:https://stackoverflow.com/questions/10200950/android-edittext-inputtype-none-doesnt-work-becomes-textmultiline 獲取焦點時不彈inputwindow Step 1:
android EditText 的鍵盤彈出(不彈出)坑爹
需求:如果想要不彈出鍵盤並且失去游標, 在layout佈局檔案裡,在EditText的父佈局中加上兩個屬性(我是直接載入頂層控制元件上) android:focusable="true" android:focusableInTouchMode="true" 缺點:當你點選 EditTex
android popupwindow中EditText預設不彈出輸入框
關於popupwindow中EditText預設不彈出輸入框的設定: 第一想法是在popupwindow中對EditText進行操作,但設定屬性後發現無效,後面經過研究發現只需要在AndroidManifest.xml檔案中對Activity的屬
android點選EditText軟鍵盤不彈出的問題
今天踩了一個坑,坑是這樣的,一個for迴圈,然後inflate一個佈局,把這個佈局動態的新增到一個linearlayout,佈局程式碼如下:<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:
android edittext 點選兩次才彈出輸入法的解決方法之一
editText: 據說第一次是編輯框焦點,第二次才是點選事件,輸入法軟鍵盤才會彈出. 既然這樣, 那就呼叫程式碼呼叫兩次點選事件.算是一種解決方法. holder.editText.setVisib
android中EditText有游標不彈出軟鍵盤處理(轉)
if (android.os.Build.VERSION.SDK_INT <= 10) {et_input_batch_num_in.setInputType(InputType.TYPE_NULL); } else {getActivity().getWindow().setSoftInputMode
開啟app後Edittext自動獲取焦點並彈出輸入法的方法
方法1.: 呼叫程式碼: //自動彈出鍵盤 InputMethodManager inputManager = (InputMethodManager) getApplication().getSystemService(Context.INPUT_METHOD_SERV
Android中的EditText預設時不彈出軟鍵盤的方法
在做專案過程中 , 父 Activity 中 用 ViewPager 中 的子 Activity EditText預設彈出軟鍵盤。這是想遮蔽 軟鍵盤 應該從 父 Activity 中處理。處理子 Activity 達不到效果。 在 父 Activity 中 onCr
用於解決AlertDialog中需要向EditText輸入內容卻不能彈出輸入法
很多時候需要以AlertDialog對話方塊的形式和使用者進行互動,因為對於一些小資料資料資訊互動,而且可以不必要的開啟新的Activity而累贅。 但當AlerDialog裡面有EditText的時
ListView裡面有EditText,彈出鍵盤後EditView立刻不能獲取焦點的問題
遇到的問題是點選EditText,鍵盤彈出後,輸入游標會消失,需要再點選一次才能獲取游標,這個大概是因為listview不能很好的處理EditText作為item的情況,彈出鍵盤後應該view是重新生成
android在點選EditText的時候始終不彈出軟體鍵盤
場景描述:正常情況下,當點選EditText時,軟鍵盤會彈出來。現在的要求是當點選EditText時,彈日期選擇對話方塊,選擇的結果顯示在EditText上。若不處理,當點選EditT