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

KeyboardView error in xml

Keyboard View in my Layout issues Exception raised during rendering: Binary XML file line #-1: Error inflating class . in xml: ///
1
vote
0 answers

Disable SoftKeyboard in MultiLine EditText android

I am trying to paste clipboard content in a disabled EditText with no softkeyboard popup, with following code clipboardBox.setInputType(InputType.TYPE_NULL); android EditText does not respect line feeds, i.e. doesnt show multiline content and…
Shardul
  • 786
  • 3
  • 11
  • 20
1
vote
0 answers

AutoCompleteTextView is not going to the next EditText

I tried singleLine=true , imeoption=ActionNext also nextfocusdown. but autocompleteTextView is not going to next EditText.
1
vote
1 answer

How to Customize the empty Keys in a Numeric Keyboard

I need to provide an option for the user to switch to AlphaNumeric Keyboard from the Numeric keyboard below, i was thinking can i make use of the empty keys in the numeric Keyboard and customize it with say abc so it can switch to alphanumeric…
SanthoshN
  • 619
  • 3
  • 15
1
vote
1 answer

Soft-Keyboard intercepting my onClickListener?

In Android I have the following code to blank an EditText box when clicked. This is to remove any existing information in the box and start with a blank slate. It sort off works. When you first click in the edit box the soft keyboard appears, but…
1
vote
2 answers

Disable SoftKeyboard while keeping Cursor

I have an EditText and a custom keyboard, so i want to avoid softkeyboard to popping up. It must never pop up, but i need also to leave EditText focusable to use cursor. Simple as it is but so hard to accomplish. I already tried a lot of solutions…
Razinar
  • 727
  • 3
  • 13
  • 21
1
vote
2 answers

Android AdjustResize not resizing correctly

I'm using this library: https://github.com/yshrsmz/KeyboardVisibilityEvent to detect when the keyboard is opened or closed and this relies on android:windowSoftInputMode="adjustResize" being input to the Android manifest. This library works…
1
vote
2 answers

EditText AdjustResize forcing content out of view

I'm currently developing a simple Notes application where the user can input a title and the content of their note. What I am looking to achieve is that when the user clicks the note content (EditText) the soft keyboard comes up and only the note…
1
vote
0 answers

How to implement nonAscii Character in softkeyboard for android

Practially I want to develop a keyboard for my local language,and after studying the developers document on IME and playing with the sample app for Softkeyboard I came to conclusion that the qwerty xml file contains the keycodes that are sent to the…
Dilip Poudel
  • 329
  • 3
  • 11
1
vote
1 answer

How to create Android KeyEvent for arbitrary Unicode character?

I'm writing an IME. As you'd expect, it extends InputMethodService. In onCreate(), I'm obtaining a KeyCharacterMap: keyCharacterMap = KeyCharacterMap.load(KeyCharacterMap.VIRTUAL_KEYBOARD); I need a way to inject phantom keypresses for arbitrary…
Bitbang3r
  • 6,826
  • 5
  • 27
  • 40
1
vote
2 answers

android add buttons on top of softkeyboard

I want to add some buttons on top of the soft keyboard (Enter and Cancel). Is there a nice way to do this or do I have to detect the keyboard being shown and add the buttons into my view?
skorulis
  • 4,361
  • 6
  • 32
  • 43
1
vote
1 answer

Android keyboard implementing backspace with emojis

I've implemented a softkeyboard for android with a built in emoji keyboard. my problem is with the backspace button , when i delete a char it's ok but when i delete an emoji it doesn't do it well. code: final EmojiconsPopup popup = new…
yanivtwin
  • 617
  • 8
  • 32
1
vote
1 answer

How to use a resizable rounded rectangle as KeyIcon

I'm working on an android keyboard application. As you know key object can set an icon or label for itself , so now I wanna set a re-sizable rounded rectangle for space keyboard button like This one I wanna make it able to be resized when it's…
user4205511
1
vote
1 answer

How to trigger shift-button on Android keyboard?

How can I trigger the "shift-button" on the Android keyboard, so that the next character will be capital? I set the InputType to InputType.TYPE_TEXT_FLAG_CAP_SENTENCES | InputType.TYPE_TEXT_FLAG_MULTI_LINE, but this doesn't work if the cursor is…
user7174483
  • 73
  • 1
  • 9
1
vote
3 answers

My footer comes up when keyboard appears

I have made a simple footer with some buttons and it shows up quite well but I just have 1 problem that it should not come up when the keyboard is visible. It should remain down and keyboard must cover it. Here is my layout file-
Daksh Agrawal
  • 855
  • 1
  • 11
  • 22