標籤:
轉自:http://mobile.51cto.com/aprogram-403138.htm
看一個manifest中Activity的配置,如果這個頁面有EditText,並且我們想要進入這個頁面的時候預設彈出IME,可以這樣設定這個屬性:android:windowSoftInputMode=stateVisible,這樣就會預設彈起IME,當然還有別的辦法。
1 <activity android:name=".ui.login" 2 android:configChanges="orientation|keyboardHidden|locale" 3 android:screenOrientation="portrait" 4 android:windowSoftInputMode="stateVisible|adjustPan" > 5 </activity>
Android EditText 不彈出IME總結
方法一:
在AndroidMainfest.xml中選擇哪個activity,設定windowSoftInputMode屬性為adjustUnspecified|stateHidden
例如:
1 <activity android:name=".Main" 2 android:label="@string/app_name" 3 android:windowSoftInputMode="adjustUnspecified|stateHidden" 4 android:configChanges="orientation|keyboardHidden"> 5 < intent-filter> 6 < action android:name="android.intent.action.MAIN" /> 7 < category android:name="android.intent.category.LAUNCHER" /> 8 < /intent-filter> 9 < /activity>
方法二:
讓EditText失去焦點,使用EditText的clearFocus方法
例如:
1 EditText edit=(EditText)findViewById(R.id.edit); 2 edit.clearFocus();
方法三:
強制隱藏AndroidIME視窗
例如:
1 EditText edit=(EditText)findViewById(R.id.edit); 2 InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); 3 imm.hideSoftInputFromWindow(edit.getWindowToken(),0);
2.EditText始終不彈出軟體機碼盤
例:
1 EditText edit=(EditText)findViewById(R.id.edit); 2 edit.setInputType(InputType.TYPE_NULL);
Android EditText不彈出IME焦點問題的總結