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
3 answers

Prevent Softkeyboard from opening on EditText Focus

I need to prevent softkeyboard from showing up when Edit Text gains focus or if user taps on the edit text because user has to use a barcode scanner as an input method. But I need is open the keyboard when user clicks/taps a specific button. I have…
Ali Rizwan
  • 182
  • 2
  • 13
1
vote
2 answers

Use “ENTER” key on softkeyboard to initiation an Event

I'm designing an android keyboard and am having difficulty with initiating an action command from the keyboard. When I am using the Internet on my device and press enter after typing in a website, rather than going to a new page, a space is shown…
1
vote
1 answer

SearchView not being focused properly after TabHost tab change

I have a SearchView that is being always shown and a TabHost above as follows: I'm trying to keep SearchView focused on certain conditions by doing: searchView.setIconified(false); searchView.requestFocusFromTouch(); when I need focus. It seems to…
Linas Valiukas
  • 1,316
  • 1
  • 13
  • 23
1
vote
3 answers

scrollview within linearlayout causing soft keyboard to appear

I had a linerlayout that contained a number of edittext fields. This all worked as expected in portrait mode with, in particular, the soft keyboard not appearing until one f the edittext fields was tapped. However, when the device was rotated to…
Doug Conran
  • 437
  • 1
  • 5
  • 17
1
vote
0 answers

Soft keyboard automatic capitalization with LibGDX

I'm writing an app for Android using LibGDX. When the user enters a text field the soft keyboard shows up, but the shift key is not pressed; moreover, after the user inserts a period, the shift key doesn't toggle automatically. Does anybody know how…
Daniels118
  • 1,149
  • 1
  • 8
  • 17
1
vote
3 answers

Android: Detect when soft keyboard gets enabled

I have started the ACTION_INPUT_METHOD_SETTING intent which give user the possiblity to activate a softInput (keyboard). I want to close the setting activity(the intent I started) when user activated my desired soft input/keyboard.
Bookan
  • 61
  • 7
1
vote
1 answer

Can I place GridLayout in KeyboardView?

Is there a way to have a GridLayout with some pictures in KeyboardView in Android? I have tried to write it in xml but it gives me error that I cant have that element in KeyboardView.
jelic98
  • 723
  • 1
  • 12
  • 28
1
vote
1 answer

Visual Studio emulator for Android: how to change keyboard language

I'm trying to find a way how to change language of software keyboard in VS emulator for Android. Now the language of input is English, and I want to change it to Russian.
1
vote
2 answers

Android soft keyboard hides controls

I know there are lots of questions about this but none of the answers are working for me. Here's a screen in question before opening the keyboard. Here's the screen after opening the keyboard by tapping on an EditText, and then scrolling as far…
nasch
  • 5,330
  • 6
  • 31
  • 52
1
vote
1 answer

EditText IME action different on different devices

I have an EditText which has an IME action specified.
Shashank Degloorkar
  • 3,151
  • 4
  • 32
  • 50
1
vote
0 answers

Implementation of emoji keyboard

I want to insert animated(GIF) emojis to chatlist for my android chat appication. I have taken reference from https://github.com/rockerhieu/emojicon and added to my application. This is working fine, but I want to add my own emoji icon package and…
Mira Thakkar
  • 339
  • 1
  • 6
  • 19
1
vote
3 answers

Issue in layout go upper side after keyboard open for edit text android

Hello friends i have below layout layour code
Harshal Kalavadiya
  • 2,412
  • 4
  • 38
  • 71
1
vote
2 answers

Android - Checkboxes in ListView lose their status when user open/hide soft keyboard

I implemented a custom ArrayAdapter to manage my data and show it in a ListView. This is the code of my custom adapter: private class ViewHolder{ User user; CheckBox check; } @Override public View getView(final int position, View…
1
vote
1 answer

SoftKeyboard hides edittext

I have an EdiText at the bottom of my layout.The issue I was having is that when it gets focus the screen shifts upwards to give space to soft keyboard.To resolve it I added android:windowSoftInputMode="adjustResize" inside my Activity declaration…
1 2 3
99
100