轉自:http://mobile.51cto.com/aprogram-403138.htm
看一個manifest中Activity的配置,如果這個頁面有EditText,並且我們想要進入這個頁面的時候默認彈出輸入法,可以這樣設置這個屬性:android:windowSoftInputMode=stateVisible,這樣就會默認彈起輸入法,當然還有別的辦法。
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 不彈出輸入法總結
方法一:
在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();
方法三:
強制隱藏Android輸入法窗口
例如:
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);