Disable soft keyboard on NumberPicker
I’m trying to deactivate the soft keyboard when using a NumberPicker to enter numerical values (for aesthetic reasons). This is my layout-xml-code: <?xml … Read more
I’m trying to deactivate the soft keyboard when using a NumberPicker to enter numerical values (for aesthetic reasons). This is my layout-xml-code: <?xml … Read more
I have researched a lot to adjust the layout when softkeyboard is active and I have successfully implemented it but the problem comes … Read more
I would like to adjust/re-size the layout when the soft-keyboard activated, as below: Before and After: Found couple resources in SO: How to … Read more
I would like to alter the layout based on whether the virtual keyboard is shown or not. I’ve searched the API and various … Read more
On Android devices that use soft keyboards, I want to prevent the fullscreen keyboard editing view (shown below) from appearing when in landscape … Read more
Is there a way in Android to detect if the software (a.k.a. “soft”) keyboard is visible on screen? 34 Answers 34 This works … Read more
Ok everyone knows that to hide a keyboard you need to implement: InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0); But the big deal … Read more
I can’t figure this out. Some apps have a EditText (textbox) which, when you touch it and it brings up the on-screen keyboard, … Read more
I want to automatically show the soft-keyboard when an EditText is focused (if the device does not have a physical keyboard) and I … Read more
I need to do a very simple thing – find out if the software keyboard is shown. Is this possible in Android? 45 … Read more