Questions tagged [virtual-keyboard]

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

405 questions
139
votes
25 answers

iOS 5 fixed positioning and virtual keyboard

I have a mobile website which has a div pinned to the bottom of the screen via position:fixed. All works fine in iOS 5 (I'm testing on an iPod Touch) until I'm on a page with a form. When I tap into an input field and the virtual keyboard appears,…
jeffc
  • 1,391
  • 2
  • 9
  • 5
138
votes
14 answers

Close virtual keyboard on button press

I have an Activity with an EditText, a button and a ListView. The purpose is to type a search screen in the EditText, press the button and have the search results populate this list. This is all working perfectly, but the virtual keyboard is…
Andrew
  • 20,756
  • 32
  • 99
  • 177
35
votes
5 answers

Buggy ListView makes me sad

I have a ListView where I've defined the layout of each item in a separate XML file. In this file I've included a RatingBar and an EditText. I've programmatically created 7-8 items in this ListView. When I scroll through them, it seems to be quite…
Andrew
  • 20,756
  • 32
  • 99
  • 177
24
votes
6 answers

onKeyListener not working on virtual keyboard

I don't understand why this piece of code is not working. Only backspace and return key are detected. Listener doesn't fire for any other key. My device is Nexus One. I tried to override activity's OnKeyDown method and that's even worse. The only…
bobetko
  • 5,019
  • 14
  • 58
  • 85
24
votes
4 answers

How to press Ctrl+A to select all content in a page by Selenium WebDriver using Java

I want to select all content by pressing Ctrl+a from keyboard by using WebDriver with Java. I wrote the following code: Actions actionObj = new Actions(driver); actionObj.keyDown(Keys.CONTROL) .sendKeys(Keys.chord("A")) …
Ripon Al Wasim
  • 36,924
  • 42
  • 155
  • 176
20
votes
4 answers

iOS 7 input elements moving fixed positioned elements

I'm trying to recompile an app for iOS 7, since nothing of the old one works so far. One of the many problems is that I'm using some inputs inside UIWebViews. Text inputs, pickers etc. Now, when the iOS 7 shining white keyboard appears, all the…
Francesco
  • 315
  • 1
  • 3
  • 9
15
votes
4 answers

SendKeys alternative that works on Citrix

I recently developed a virtual keyboard application for a customer. The program is working fine with almost all programs, but certain commands like {ENTER} or {DEL} are not working with Citrix. Is there are workaround or an alternative to…
xsl
  • 17,116
  • 18
  • 71
  • 112
12
votes
1 answer

Virtual Latex math keyboard with MathJax or similar

I'm trying to create a virtual math keyboard like the one in khanacademy.org or mathspace.co or similar websites, where you can insert math symbols and write over them to answer a question if you're a student, how can I achieve something like…
Ruby
  • 2,207
  • 12
  • 42
  • 71
11
votes
0 answers

Virtual keyboard for chromium in kiosk mode (fullscreen)

For a kiosk application on a touch screen device we use a web app running inside chromium browser in kiosk mode (--kiosk), which implies full screen. We are now seeking a solution to provide users with a virtual keyboard. What we have…
hannenz
  • 503
  • 4
  • 14
11
votes
1 answer

Developing a custom virtual keyboard for Windows 10

I would like to create a custom virtual keyboard for touch on Windows 10. I am primarily a c# developer but if Windows 10 Dev is anything like the previous version, I'll probably have to revert back to C/C++. I want to be able to define…
Robert
  • 535
  • 3
  • 13
11
votes
3 answers

WPF Window size not affected by TabTip keyboard

I have a WPF application running on a Windows 8.1 tablet. the application is using the following method to show the virtual keyboard: public static void OpenKeyboard() { ProcessStartInfo startInfo = new ProcessStartInfo(@"C:\Program…
Yoav
  • 3,326
  • 3
  • 32
  • 73
11
votes
1 answer

Disable Firefox OS keyboard autohiding when touching outside the keyboard

When I tap an input field in Firefox OS, the on screen keyboard comes up. I am developing a messenger app and have a toolbar that borders the on-screen keyboard with a "Send" button. When I tap the send button, the keyboard automatically closes…
Fenix
  • 188
  • 10
9
votes
1 answer

Virtual Keyboard hides fields/textareas/contenteditable (hidden below keyboard)

I know there are already some StackOverflow threads about the problem that the virtual keyboard of mobile phones hide or overlapping input fields, text areas and so on. But all these threads were useless, I searched a lot but many talked about this…
user3714751
  • 326
  • 3
  • 15
9
votes
3 answers

Can webpage be aware of android virtual keyboard

I have web page with jquery terminal and hidden textarea (that trigger Android Virtual keyboard), I can type characters but when I enter few commands the content is hidden behind Virtual Keyboard. Terminal content is scrolling to bottom because when…
jcubic
  • 61,973
  • 54
  • 229
  • 402
8
votes
3 answers

android popupwindow is above virtual keyboard

I have a popup window with an adview appearing at the bottom or my screen. I am doing it this way so the user can click an x to close the ad. When the virtual keyboard comes up when the popUpWindow is active, the ad is still visible. How can I…
Jeremey
  • 1,456
  • 3
  • 13
  • 19
1
2 3
26 27