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
1 answer

runtime error on softkeyboard using LatinIME.git example

I need help from someone of professional android developers. I develop softkeyboard for android 2.2. I wanted to use LatinIME.git as example. An Eclipse project is correct and can be compiled, but after installing app and setting keyboard as input…
1
vote
0 answers

Android numberpicker does not expand

The android numberpicker does not expand after inserting a digit with the soft keyboard. I'll demonstrate with an example: Insert 1000 inside the numberpicker: Add one "0" to the numberpicker with the soft keyboard by tapping on the…
1
vote
1 answer

Changing soft input mode in activity

I have an activity with one EditText. I would like to use both approaches for showing keyboard during my operations: SOFT_INPUT_ADJUST_PAN SOFT_INPUT_ADJUST_RESIZE I use this: if (something()) { …
Giks91
  • 273
  • 3
  • 5
  • 20
1
vote
3 answers

LibGDX - how to catch a backbutton inside a TextField with Android Keyboard visible?

I'm trying to catch the Back button while the TextField is focused (keyboard is visible). I have already tried with Multiplexer - setting the 'BackProcessor' on the top of the stages - it doesn't work: InputProcessor backProcessor = new…
user6367252
1
vote
0 answers

Android EditText noSuggestions with enter key on soft keyboard

Hi all :) A few time ago i wanted to do edittext with noSuggestions and multiLine with enter key. The problem was that, when i set: android:inputType="textNoSuggestions" then I had no suggesions, but enter key was transformed to "DONE" action. So i…
1
vote
1 answer

how to run my application above keyboard when user click on any textView in any application?

I would like to visible my application view above the keyboard whenever the user clicks on textView in any application, the only thing that I knew is my application should be running in background and make the view visible when keyboard gets called,…
1
vote
1 answer

Hide Navigation Bar when soft keyboard is launched Android

I am trying to hide the Navigation bar when the keyboard is launched from an edit text in a activity. i have tried a lot of solutions, but haven't had much luck. The following code i found here in this forum, but it doesn't eliminate the nav bar…
n4zg
  • 387
  • 2
  • 6
  • 20
1
vote
5 answers

textCapWords is not working for Samsung keyboard

Here is my EditText, textCapWords is not working for Samsung keypad. (Samsung S4). is there any workaround?
Jagadeesh
  • 239
  • 5
  • 9
1
vote
0 answers

Create EditText above soft keyboard on button click

I want to create an EditText above soft keyboard on button click. Only when i click the floating button i want the soft keyboard up and put an EditText above it. The floating button should disappear (Or for example ad banner to be hidden). The…
1
vote
0 answers

android softkeyboard onTouch()

What is best way to implement custom SoftKeyboard, so it recognize where user push, and where user release, and then use both coordinates to determine character? E.g. if i push Q, then move finger to E, then release. Application should get 2…
1
vote
3 answers

EditText hides behind Button when keyboard is visible or tapped

i searched a lot on google and i found many solutions but nothing is working for me . i am producing screen shots that will explain where and why am facing this issue . Normal Screen with Out Soft Key Board Image: After Soft Keyboard appearance…
1
vote
0 answers

Add button on CandidateView

In my keyboard app, I have created a dynamic candidate view rather than using xml file. On that candidate view, I have to create a button for emojis. My problem is similar to this one :- Android: How to make button on candidate view in…
Anirudh Sohil
  • 43
  • 1
  • 7
1
vote
2 answers

How to implement scroll layout within keyboard of Android?

I have been working on custom keyboard for android. I saw a few keyboard app like Kika Keyboard which has feature to swipe from one view to another if you want to use different emoji sets. Can anyone help me how do I implement emojis in such a way?…
Anirudh Sohil
  • 43
  • 1
  • 7
1
vote
2 answers

EditText with selection always set

I have a EditText which can only contain one character. I would like it so that when I tab on the EditText it opens the keyboard (this bit Ive done) and then the text (if any) is selected. This will allow the user to click another letter and because…
RNJ
  • 15,272
  • 18
  • 86
  • 131
1
vote
0 answers

Popup Keyboard like Android Default keyboard

Imagine a normal keyboard in android (like English). When pressing and holding A for a while, a new menu with á, ä and other buttons popups up. And while still holding the first finger down on screen, you slide it on top of another of those buttons.…