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

widget covered by keyboard in MobileFirst hybrid app

I have a simple MobileFirst hybrid app with only html/JS. On iOS7, when inputting data for a widget near the bottom of the screen, the widget becomes covered by the soft keyboard. This happens only for the app. If run it in mobile browser, it…
0
votes
2 answers

Close soft keyboard on iOS / Android

How can I close the soft keyboard on both Android and iOS? It seems to linger after the input field is already gone ( moved on to the next view ).
ErikBrandsma
  • 1,661
  • 2
  • 20
  • 46
0
votes
2 answers

EditText not getting selected, but popping keyboard up

My soft keyboard pops up on an activity with an edit text, but I still have to press the edit text to be able to type into it, otherwise pressing keys on the keyboard do nothing I am using requestFocus() as well as android:focusable="true" as well…
CQM
  • 42,592
  • 75
  • 224
  • 366
0
votes
1 answer

need full example of use of softkeyboard

Can someone point me at a complete ap that uses the softkeyboard example -- or something similar?
user304719
  • 11
  • 1
0
votes
1 answer

Hiding android SoftKey board

How to hide the SoftKeyboard from screen when edittext is accepting input from remote? I have tried InputMethodManager imm =…
Rahul Matte
  • 1,151
  • 2
  • 23
  • 54
0
votes
2 answers

How to prevent lifting listview when keyboard goes up

This is code MainActivity java and…
ilw
  • 2,499
  • 5
  • 30
  • 54
0
votes
1 answer

How to invoke the softKeyboard for a TLF textfield in AS3?

I need to use a TLF textfield in a Flash mobile app. How to invoke the softKeyboard on mobile devices for such a TLF textfield? I tried it the way below, but it's not showing up: import flash.ui.Keyboard; import flash.events.KeyboardEvent; import…
Tom
  • 5,588
  • 20
  • 77
  • 129
0
votes
1 answer

Cordova: Programmatically trigger soft keyboard on wp8

I am beginning to write an app for WP8 using Cordova. How do I show the soft keyboard without the user touching a text element? I can find soft keyboard plugin for Android and native code for iOS plugin but cant find anything for WP8.
atlantis
  • 817
  • 1
  • 10
  • 16
0
votes
0 answers

On windows phone form panel cannot scroll when keyboard shown

I create a app use Sencha Touch2.3, on Windows Phone (Nokia Lumia 520, IE mobile 10 ) formpanel can not scroll if keyboard shown. But I have a long formpanel, can not scroll will very inconvenient. I find all formpanel can not scroll when keyboard…
0
votes
0 answers

Windows Phone 7 - Keyboard showing up for now reason

So I have a listbox with a template in which I bind an ObservableCollection of objects called "TotalDebits". I have two way to delete the items: One by one through a context menu By range through a delete button and by fetching the checked…
Marc
  • 352
  • 2
  • 6
  • 19
0
votes
2 answers

Hide soft keyboard showed by other application

I know that to hide soft keyboard I need to use code like this: InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0); My problem is that I starting…
Vladyslav Matviienko
  • 10,610
  • 4
  • 33
  • 52
0
votes
3 answers

using mobile keyboard search button

I have a search textbox in my windows phone 8 app. I dont want to add a search button for this, but rather use the search button on the mobile soft keyboard. Any code snippets or links providing inputs for the same?. Also I might deploy this app on…
Siddharth
  • 436
  • 2
  • 11
  • 29
0
votes
1 answer

How to handle delete key on soft keyboard for rtl languages

In my soft keyboard I can perfectly capture the event key for deleting as below public void onKey(int primaryCode, int[] keyCodes) { if (primaryCode == Keyboard.KEYCODE_DELETE) { int ccLength = composingContent.length(); if…
Vahid
  • 1,625
  • 1
  • 18
  • 33
0
votes
1 answer

How to keep soft keyboard opened on iOS. Flash Builder 4

I'm building chat application for mobile devices with Adobe Flash Builder 4.6. I have s:TextInput for message entering and s:Button for sending message. When user enters message and taps "Send" keyboard goes down. I want to keep it opened. I can use…
Stan Reshetnyk
  • 1,986
  • 1
  • 13
  • 31
0
votes
2 answers

android softkeyboard not closed after clear the task

In my application i have one edittext with one image for add the task into database.My problem is when i add the task in database after that the android soft keyboard visible instead of closing.I am using all those examples in stack overflow but not…
Satheesh
  • 1,722
  • 25
  • 35
1 2 3
18
19