The default onscreen input method provided by Android OS.
I have an EditText and a Button in my layout. After writing in the edit field and clicking on the …
android android-edittext android-softkeyboard android-input-method soft-keyboardI want to automatically show the soft-keyboard when an EditText is focused (if the device does not have a physical …
android keyboard focus android-edittext android-softkeyboardOk everyone knows that to hide a keyboard you need to implement: InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE); imm.…
android android-softkeyboardI need to do a very simple thing - find out if the software keyboard is shown. Is this possible …
android visibility android-softkeyboardIs there a way in Android to detect if the software (a.k.a. "soft") keyboard is visible on screen?
android keyboard android-softkeyboardI have an Edittext with android:windowSoftInputMode="stateVisible" in Manifest. Now the keyboard will be shown when I start the …
android android-softkeyboardI would like to alter the layout based on whether the virtual keyboard is shown or not. I've searched the …
android events android-softkeyboardI would like to adjust/re-size the layout when the soft-keyboard activated, as below: Before and After: Found couple resources …
android android-layout android-softkeyboardI can't figure this out. Some apps have a EditText (textbox) which, when you touch it and it brings up …
android android-softkeyboardI have an Activity where there are 5 EditTexts. When the user clicks on the first EditText, the soft keyboard opens …
android android-activity android-edittext android-softkeyboard