InputMethodManager imm = (InputMethodManager)getSystemService(Service.INPUT_METHOD_SERVICE);
for hide keyboard
imm.hideSoftInputFromWindow(ed.getWindowToken(), 0);
for show keyboardfor focus on EditTextimm.showSoftInput(ed, 0);
ed.requestFocus();
Changes in Menifest.xml
<activity android:name=".Activity" android:configChanges="keyboard|orientation"></activity>
For more information check this Question
No comments:
Post a Comment