The default onscreen input method provided by Android OS.
I tried to write a code which is used to re-size the UI components when soft-keyboard appears. When I use …
android android-softkeyboardI have researched a lot to adjust the layout when softkeyboard is active and I have successfully implemented it but …
android android-layout android-widget android-softkeyboardI have an activity with no child widgets for it and the corresponding xml file is, <?xml version="1.0" encoding="…
android android-softkeyboardOk in my app I have a field for the user to input a number. I have the field set …
android keyboard-events android-softkeyboardHello I've got a searched EditText and search Button. When I type the searched text, I'd like to use ENTER …
android keyboard android-softkeyboardI have a login screen with two EditTexts and a login button in my layout. The problem is that, when …
android android-softkeyboardI have an Activity with some EditText fields and some buttons as a convenience for what normally would be used …
android android-softkeyboardOne of my apps has an "opening screen" (basically a menu) that has an EditText followed by several Buttons. The …
android android-softkeyboardI have a FragmentActivity using a ViewPager to serve several fragments. Each is a ListFragment with the following layout: <?…
java android android-fragments android-softkeyboardI am currently showing softkeyboard using the following code InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.toggleSoftInput (InputMethodManager.…
android android-softkeyboard