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

EditText inside floating Activity not updating immediately upon typing

I have an activity (be it Act.A), and it starts another activity (be it Act.B) which floats above Act.A, with the following style set: In Act.B's onCreate(savedInstanceState): requestWindowFeature(Window.FEATURE_NO_TITLE); In styles.xml:
Derekyy
  • 1,018
  • 4
  • 18
  • 31
1
vote
1 answer

How to force button at bottom of view to move up with soft keyboard?

I have a button at the bottom of my view, and I would like that when my editText is interacted with that the button remains on top of the soft keyboard. How can I force this? Here is how my layout is formatted. Please also note that this is a…
portfoliobuilder
  • 7,556
  • 14
  • 76
  • 136
1
vote
0 answers

The "Enter" key on soft keyboard not working for SearchView

I'm working on a custom keyboard, but have a problem. The Enter key of my keyboard not working for SearchView while the Enter key of the default keyboard of device, works correctly. I have defined the Enter key in my keyboard xml file as below:
Mansour
  • 445
  • 1
  • 4
  • 14
1
vote
2 answers

Change back to On-screen back button when soft keyboard is open in android

As you can see from the screenshot when i open the Keyboard the back button changes to a new action to close the Keyboard. Is there a way to disable this by code and show the On-screen back button instead? I searched around but i couldn't find the…
Shubham Chauhan
  • 929
  • 2
  • 7
  • 18
1
vote
0 answers

how to make new custom emotion Softkeyboard for Android?

What I want to make is emotion keyboard. When I searched, I found Emoji Layout is need to be very attractive. In short, I want to make app which would be keyboard and that can be used anywhere in messenger. I want develope android service like…
user5323805
1
vote
0 answers

InputmenthodService of custom keyboard changed to Phone'sdefault when Reboot or update app

Created Full Functional custom keyboard and working almost all phones but when checking to Asus (kitkat Android 4.4.4) phone and MI(note 2) It gives some Problem. Changed to Default Phone's Keyboard when: Phone restarts. Application Updates. Clear…
1
vote
0 answers

How to open an activity from onKey with soft Keyboard Android?

I'm new on Android Programming, well, on all kind of programming in fact; but I'm trying to adapt the free-code of a translator from a app that I found to a soft keyboard. I need some help because I'm sure that I'm making so big error. Basically due…
1
vote
2 answers

How to show candidate view and recycler Tabs view postion on candidate View?

Android Candidate View I want to make a candidate view with scrollable. When I'm scrolling recycler view my candidate show up PagerTabs will appear and right scroling will candidate view appear if anything not show up candidate disable candidate…
1
vote
1 answer

Hide Numeric Keyboard ONLY WHEN clicked outside any of the Edit Text

I have three different Edit Text with restriction of entering only numeric values, thus tapping on any one of the Edit Text opens NUMERIC KEYBOARD. I tried to implement setOnFocusChangeListener for all Edit Text which ensures that when user tap…
user3276435
  • 265
  • 1
  • 3
  • 13
1
vote
1 answer

android visibility of software keyboard

I want to check if the software keyboard is visible. I have read this topic. final View activityRootView = findViewById(R.id.activityRoot); activityRootView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { …
Taldakus
  • 705
  • 2
  • 8
  • 18
1
vote
0 answers

Why needed PointerTracker and KeyEventHandler class

I'm developing in LatinKeyboard. Can anybody please explain what this method does ? This is a pointerTracker class why need PointerTracker class and keyEventHandler Interface in LatinIME. public class PointerTracker { public interface…
Sonu Kumar
  • 969
  • 1
  • 11
  • 36
1
vote
1 answer

How can I create my custom Attributes on xml keyboardview?

I am developing softkeyboard in android my question, how can i create my custom Attributes on xml keyboardview?
Sonu Kumar
  • 969
  • 1
  • 11
  • 36
1
vote
1 answer

How to change appearance of android soft keyboard as in kitkat/lollipop system keyboard

I am trying to create custom ime/softkeyboard for Android devices. How to change its appearance as in kitkat/lollipop system keyboard
1
vote
3 answers

Keyboard pans layout only once

There's a problem that I can't find a solution to. When I launch my activity, the first time I select the EditText field, the keyboard works just fine ( it pans the layout ). When I minimize the keyboard and select it again, it overlaps the layout…
Sw3das
  • 157
  • 1
  • 12
1
vote
0 answers

Detecting soft-keyboard State

Is it possible to detect the state of the softkeyboard using the android:windowSoftInputMode="adjustNothing" i have found multiple solutions where either adjustPan or adjustResize is required any Help on this?
Dominic D'Souza
  • 961
  • 2
  • 7
  • 16