Questions tagged [soft-keyboard]

A "soft keyboard" is a virtual keyboard based on a software component that allows a user to enter characters.

A virtual keyboard is a software component that allows a user to enter characters.[1] A virtual keyboard can usually be operated with multiple input devices, which may include a touchscreen, an actual computer keyboard and a computer mouse.

Virtual keyboards are commonly used as an on-screen input method in devices with no physical keyboard, where there is no room for one, such as a pocket computer, personal digital assistant (PDA), tablet computer or touchscreen equipped mobile phone. It is common for the user to input text by tapping a virtual keyboard built into the operating system of the device. Virtual keyboards are also used as features of emulation software for systems that have fewer buttons than a computer keyboard would have.

http://en.wikipedia.org/wiki/Virtual_keyboard

284 questions
6
votes
1 answer

Android Keyboard cover EditText when i click it second time

I have an EditText near the bottom of the activity. When i click the first time appear the Keyboard and then al the layout move up to make the EditText visible to write in it and see what you digit. When i close the Keyboard (using DONE button) and…
6
votes
6 answers

SearchView setIconified(false) automatically calls the focus for the searchview. How can I disable this?

I have the following code: if(mSearchView != null){ mSearchView.setIconifiedByDefault(false); mSearchView.setIconified(false); mSearchView.setOnQueryTextListener(this); int searchPlateId =…
rosu alin
  • 5,674
  • 11
  • 69
  • 150
6
votes
7 answers

Move layout up when soft keyboard is shown

I'm trying to adjust the layout when the soft keyboard appears after an edit text gets focus. Right now if I have many edit text and the keyboard appears, the last edit text are hidden and I can't scroll up. This is how my layout is builded…
lpfx
  • 1,476
  • 4
  • 18
  • 40
6
votes
2 answers

Soft keyboard does not show when Activity starts

I have added android:windowSoftInputMode="stateAlwaysVisible" to my Activity in AndroidManifest.xml and here's my layout:
Sarp Centel
  • 1,283
  • 2
  • 14
  • 23
6
votes
3 answers

How to hide Windows Phone 8.1 soft keyboard effectively?

I want to hide the soft keyboard when the Enter key is tapped, but no solutions works for me properly. (Windows Phone 8.1 Universal App) This one just doesn't work: if (e.Key == VirtualKey.Enter) { textBox.IsEnabled = false; …
5
votes
2 answers

Flex Prevent soft keyboard from closing

I have a mobile AIR app with a simple layout:
sydd
  • 1,824
  • 2
  • 30
  • 54
5
votes
1 answer

Android Softkeyboard enter the numeric value into edittext very slow

I have TableLayout, which contain number of products.Each row contain code, description qty , price, discount value, ..... Depends on the user enter quantity , discount value, discount quantity & some other values also will calculate. when user…
Piraba
  • 6,974
  • 17
  • 85
  • 135
5
votes
3 answers

Soft-keyboard type in a custom HTML page

Is there any way to specify which soft keyboard layout (I need only numbers) is shown when the user taps on a text input field in an HTML page? I can change the HTML page and the Javacode (I have an activity embedding a WebView). However, it must…
Vincent Mimoun-Prat
  • 28,208
  • 16
  • 81
  • 124
5
votes
2 answers

Custom popup for key of keyboard

I am making custom keyboard.. Now my question is that I want custom popup for key pressed. So, can I change it. popup of key like as this image If any one know about this then please help me... CapDroid
Niranj Patel
  • 32,980
  • 10
  • 97
  • 133
5
votes
2 answers

Android - How to adjust a popup when the soft keyboard shows up

I want to replicate this effect in my layout. But in my layout when the keyboard show up, my pop-up is not adjusted. The device adjust me the main activity below and not the popup. this is my popup layout.xml :
Luke
  • 517
  • 10
  • 29
5
votes
3 answers

android default keyboard layout styling

I am wanting to alter the default (whatever is on your device's) keyboard, so that the colors displayed reflect my apps overarching theme better. for example white background, light blue keys, that go dark blue when pressed. Using this tutorial I…
5
votes
1 answer

focus WITH SOFT-KEYBOARD with bootstrap modal

How can I make the softkeyboard come up with the bootstrap modal when auto focusing a field? It sounds easy, but I am unable to do so as of yet. The focus part works but not the keyboard. I am trying to save the user a tap. I can leverage…
jumpdart
  • 1,702
  • 16
  • 35
5
votes
1 answer

How do I get buttons below the soft keyboard in WP 8.1?

I've noticed that some Windows Phone 8.1 screens like the Microsoft Account sign-in wizard have buttons like "Previous" or "Next" below the soft keyboard. So you can type in whatever into an input field and tap a button to go to the next screen…
RandomEngy
  • 14,931
  • 5
  • 70
  • 113
5
votes
2 answers

custom keyboard keys looks blurry

I customized the soft keyboard. But keyboard keys(1,2,3,4,5,6,7,8,9,0,. and OK) is looking blurry.Delete key is fine but other key is looking blurry. Here is my keyboard. Here is my custom keyboard xml file
Mubarak
  • 1,419
  • 15
  • 22
4
votes
3 answers

How to check if the native/hardware keyboard is used?

I want to check if the native/hardware keyboard is used, and also if possible I want to disable the third party keyboards. My goal is simple I use just the native android soft keyboard for entering values in my edit boxes and no other keyboard…
Lukap
  • 31,523
  • 64
  • 157
  • 244
1 2
3
18 19