Questions tagged [android-softkeyboard]

The default onscreen input method provided by Android OS.

Android Soft Keyboard is the onscreen keyboard provided by Android OS.

Key Events of Android soft keyboard

On-screen Input Methods in Android Developers blog

2751 questions
1
vote
0 answers

Replace softkeys with another layout or view in an android application

I want to implement emoticons in my app. The emoticon view/layout should appear in place of the soft keyboard (as in WhatsApp). i.e. When user clicks on an edittext the keyboard should appear (which is normal default behaviour) but when the user…
Nihar
  • 33
  • 5
1
vote
0 answers

App with own soft keyboard by default

I'm creating a app and want him to have his own custom soft keyboard by default, but I don't know how do this. So far I have the app and a separate app for the keyboard, I tried to set the custom keyboard by default but don't managed to do that, the…
1
vote
2 answers

android:windowSoftInputMode="adjustResize" had slow resize

I'm using android:windowSoftInputMode="adjustResize" on my activity to enable my view to get resize when the keyboard is shown. However, when dismiss the keyboard, we could see the resize of the view back to it's original state happens slow,…
Elye
  • 53,639
  • 54
  • 212
  • 474
1
vote
1 answer

How to add switch language functionality in the Android soft keyboard?

The Android Soft Keyboard application currently has English language, and I am modifying it to add another language into it. I am almost done with layout of new language and adding alphabets manually as the language is not included in the Android…
Maihan Nijat
  • 9,054
  • 11
  • 62
  • 110
1
vote
0 answers

Putting a View just above the soft button bar android

I have a tabbed Activity in android created using the android.support.design.widget.AppBarLayout and android.support.v4.view.ViewPager classes. The parent layout for this activity is a android.support.design.widget.CoordinatorLayout. In one of the…
Swapnil
  • 1,870
  • 2
  • 23
  • 48
1
vote
2 answers

Soft Keyboard hides ListView elements in Fragment

I have a Fragment that contains a ListView to which I add three EditText's to and one Spinner when I select the second EditText the keyboard shows as expected but I cannot scroll the list view to the last two remaining elements in the list view…
Kai Windle
  • 63
  • 1
  • 7
1
vote
0 answers

Keyboard is not visible in textbox of webview android

I am opening web view in dialog box, when i open website inside the keyboard is not visible here is my code AlertDialog.Builder alert = new AlertDialog.Builder(this); alert.setTitle("Title here"); final WebView wv = new WebView(this); WebSettings…
1
vote
2 answers

How to make Keyboard's POPUP window dismiss when not touching

I'm creating a custom soft keyboard, and created a PopupWindow to show when a key is long pressed, like when you long press E and it shows E, É, È for you to choose one. The popup has a key to close him, but I want to remove this key and make him…
1
vote
2 answers

Android: Trigger the softkeaboard in custom edittext

I want to show the softkeyboard, but it does not work. Here is my code: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); myTextView myTextView = new myTextView(this); …
Fr4gg0r
  • 23
  • 1
  • 4
1
vote
2 answers

Android soft keyboard stays open after confirming EditTextPreference dialog

Context: I'm working with settings using PreferenceFragment and Activity (Android 4.4.2 - API 19). Problem: When clicking "OK" on the resulting dialog from EditTextPreference, the soft keyboard stays open. Attempted Solution: Manually closing the…
1
vote
1 answer

How to move the views up while EditText grows with text AND how to retain a view or layout just on top of soft keyboard in fragment?

I have a couple of EditTexts and a Camera and Camcorder ImageViews. 1). I want Camera and Camcorder to be just on top of the soft keyboard when it opened up when EditTexts takes the focus. 2). Also, with this layout when the text that user enters…
1
vote
1 answer

Android Custom Keyboard: How do I add the functionality of a list of items(ex. Emoticons)?

I have a working custom keyboard(as a service): public class SimpleIME extends InputMethodService implements KeyboardView.OnKeyboardActionListener { It works but what I am trying to do is add a way to show a (scrollable) list of items for the…
JasonDD
  • 23
  • 3
1
vote
1 answer

How to link a button on a keyboard to start up a new screen?

I have a key on my custom keyboard but I want open up a new window when it is pressed that displays a list of options.…
1
vote
3 answers

Hiding keyboard prior to initiating ProgressDialog

I have a keyboard that I absolutely need to have disappear before initiating my next functions. What I've determined is that the ProgressDialog is getting in the way. I took out the line and it works fine. Why can't the ProgressDialog show if and…
Martin Erlic
  • 5,467
  • 22
  • 81
  • 153
1
vote
1 answer

Restrict EditText programatically to show numeric keyboard

There is no XML associated with this EditText. It's generated in the Activity. final EditText txtPrice = new EditText(getContext()); txtPrice.setKeyListener(DigitsKeyListener.getInstance(false, false)); txtPrice.setFilters(new InputFilter[] { new…
Martin Erlic
  • 5,467
  • 22
  • 81
  • 153