Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
972 views

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. ...
7
votes
2answers
867 views

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 ...
6
votes
1answer
279 views

Delphi 2010 virtual keyboard, start with CapsLock on?

Delphi 2010 Enterprise How can I automatically turn the CapsLock on when the virtual keyboard is displayed.
5
votes
1answer
204 views

TTouchKeyboard: send keystroke to other program?

How do I use TTouchKeyboard in Delphi, so it could send keystrokes to other program. For example, I want to type password in a browser using TTouchKeyboard component. I have no idea how make the ...
4
votes
2answers
171 views

ExtJS3 Virtual Keyboard plugin throws a exception in ExtJS4

I had used virtual keyboard plugin available here in Ext JS 3 : It does not seem to be working with Ext JS 4 . I have changed VirtualKeyboard.js file & it looks as follwing, problem is BackSpace ...
4
votes
3answers
4k views

onKeyListener not working on virtual keyboard

I don't understand why this peace 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 ...
3
votes
2answers
1k views

SendInput() isn't “sending” the correct shifted characters?

void WriteChar(char c) { INPUT input = {0}; input.type = INPUT_KEYBOARD; input.ki.wVk= VkKeyScanEx(c, GetKeyboardLayout(0) ) ; SendInput(1,&input, sizeof(INPUT)); } ...
2
votes
1answer
40 views

Blackberry Playbook WebWorks How to make a textfield open a different virtual keyboard?

I'm developing a WebWorks application for the Blackberry Playbook. This page in their documentation says You can display a specific type of virtual keyboard, depending on the type of input that ...
2
votes
1answer
89 views

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 ...
2
votes
0answers
125 views

Web view virtual keyboard handling in android

I have a text box in web view, when tap that text box default android keyboard up to enter the text, with GO button in virtual keyboard. I need to handle that GO button press in android.I tried with ...
2
votes
1answer
207 views

how to disable lwuit vkb?

The ability for disabling vkb is included in the new svn source code... But by default vkb comes in midlet... How to disable it in midlet... In the old documentation it was given To use the LWUIT ...
2
votes
1answer
200 views

Android Hide keyboard for password field

While setting setInputType(InputType.TYPE_NULL); for the password field, the text we are inputting is visible and will not be masked by dots which is not desirable for password field. ...
2
votes
1answer
478 views

Java: Add a Global Mouse Listener

I am developing a virtual keyboard using java applet. How do I set global mouse listener, so that I can get all mouse events inside my applet even if my applet is not the active window. And is there ...
2
votes
1answer
771 views

Trouble with onscreen keyboard orientation in iPhone OpenGL ES application

I need to take keyboard input in my OpenGL ES application, so I just created a hidden UITextField and added it as a subview to the main window along with the view that presents my content. I use the ...
2
votes
2answers
130 views

How to send the output of a software to a Microsoft Windows Virtual Keyboard?

I am using xvkdb with X11 to send the content of my Barcode reader to the Keyboard Focus Window. But I am looking to port this Barcode Reader on Microsoft Windows. How would you do that? Here is the ...
2
votes
1answer
531 views

Virtual Keyboard

I have an application developed to run on a particular cellphone running windows mobile. The application is configured to run in full screen using the phone physical keyboard as an interface. At this ...
1
vote
1answer
255 views

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 ...
1
vote
1answer
93 views

How to open the VirtualKeyboard associated to a TextField when the field is edited?

I initialized the VKBImplementationFactory in startApp() : public void startApp() { VKBImplementationFactory.init(); Display.init(this); new MenuPrincipalForm(this).show(); ...
1
vote
3answers
135 views

how to disable lwuit vkb and show default system vkb?

i tried the command Display.getInstance().setDefaultVirtualKeyboard(null); it disabled luiwt virtual keyboard as well as the system virtual keyboard.. how to disable lwuit virtual keyboard and ...
1
vote
2answers
98 views

Find most similar shapes in Python

I am working on a virtual keyboard, similar to Swype (but for a platform it doesn't support). Basically, what it does (for those not familiar) is you move your finger over the keys without lifting it ...
1
vote
2answers
45 views

Why isn't the virtual keyboard closed properly

I'm running a program which is calling a mmSocket.connect() -procedure in which a bluetooth pairing-process is started. If the phones aren't paired a dialog shows up after the code is entered on the ...
1
vote
1answer
219 views

Can we create virtual keyboard for a specific app?

Is it possible to create a virtual keyboard for a specific application....I have gone through this example virtual keyboard but it is replacing the system keyboard not for a specific ...
1
vote
1answer
397 views

Getting the keyevent info from Virtual Keyboard of symbian touch devices

Is there any way to obtain the keypress info for the green-tick (green check marked key) present in the input panel/ virtual keyboard? Our application is for symbian touch devices. In my application ...
1
vote
0answers
387 views

Progress Dialog causing Virtual Keyboard to not show on WebView

I have a weirb bug that is pissing me off. I have an app that is pretty much only a webview with some extra functionalities, one of them is a Custom Loading Dialog (Extended from the progress dialog) ...
1
vote
3answers
4k views

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 ...
1
vote
1answer
281 views

Virtual keyboard not working on Microsoft Surface hardware but does work in the simulator

I did an application for the Microsoft Surface and the virtual keyboard that appears when I focus the SurfaceTextBox did not appear when I tested it on a real Microsoft Surface yesterday. On the ...
1
vote
1answer
416 views

Display virtual keyword asp.net for password

I have a login page with an input of type "password" I would like to have a virtual keyboard to enter the password. I've searched and I found the jquery script for virtual keyboard. The code said to ...
1
vote
0answers
461 views

wpf passwordbox caret

How do I use a passwordbox control with a virtual keyboard using WPF? With the textbox control, it's fairly simple to just move the caret to the next text position; not so with passwordbox, which ...
0
votes
1answer
63 views

iOS Dismiss Keyboard on View Change

I have a view-based application, and in one of the subviews there is a UIScrollView. I have written handlers to adjust the size of the scroll view when the keyboard appears and disappears. I would ...
0
votes
1answer
64 views

Using Japanese On Screen Vitrual Keyboard in Windows 7

I want to test my software compatibility with Japanese apps, and I don't have neither Japanese keyboard, nor Japanese knowledge. Is there anything like Japanese On Screen Virtual Keyboard in Windows ...
0
votes
2answers
85 views

How to make QPushButtons to add text into QLineEdit box?

I used Qt Creator to make a "keyboard" window with sixty QPushButtons and one QLineEdit. How can I make the buttons to add characters into QLineEdit text box? If I press a QPushButton with the label ...
0
votes
2answers
65 views

C++ Binding keyboard keys: iterate over all virtual keys?

I'd like to be able to load custom key binds for my application. A configuration file would typically contain a list of keys and associated function names. When I load this file, is there a way to ...
0
votes
2answers
111 views

Virtual keyboard using ASCII codes

I created a virtual keyboard with the following sample code. <script type="text/javascript"> function vkb(vap){ document.forms["virtual"]["text"].value += vap; } </script> <form ...
0
votes
3answers
98 views

Making own virtual keyboard

I want to make my own virtual keyboard using JavaScript. Please tell me the syntax how to add characters to a TextBox. Adding the first character is easy but adding the second one I am unable to do. ...
0
votes
1answer
49 views

Entering foreign characters in a text box

In Windows 7, you can configure keyboards so that you can type in different languages. To switch "virtual" keyboards, you have to click the little icon in the task bar and select the language in which ...
0
votes
3answers
165 views

How to run those Android SDK example applications?

I have 64-bit Windows 7 Professional, Android SDK and ADT Plugin for Eclipse. In the examples directory of Android SDK there are at least three different directories for SoftKeyboard. Which one should ...
0
votes
1answer
229 views

HID report descriptor (with iPhone)

I am trying to send keystrokes via bluetooth to my iPhone4 from ubuntu. I.e., developing a very primitive virtual keyboard. Problem Have my application talk to iPhone (i.e. using report protocol, ...
0
votes
2answers
40 views

how to move footer up nd down in layout

I am doing an android app where I have two buttons which should be placed in bottom and when keyboard pops up they need to move above the layout of keyboard and again go back to bottom of page. How?
0
votes
0answers
76 views

How to display the Soft Keyboard from a Service?

Short question: Is it possible (and how) to display the soft-keyboard from a Service? Long question: I wrote a service which creates a "top bar", displayed on top of all activities, containing an ...
0
votes
1answer
157 views

Blackberry Issue showing VirtualKeyboard and gettin a blank screen

I have an issue when i show the VirtualKeyboard then appears on my screen a blank space over the MainScreen. Some ideas to avoid this blank space? Probably is the same weird attitude of the ...
0
votes
1answer
99 views

Alighnment issues on Virtual Keyboard popup in blackberry

I have a login screen with some textfields, textboxs, buttons and having the background image to the screen. Now the issue is on touch devices when virtual keyboard is popups, the screen shrinks with ...
0
votes
1answer
129 views

How to intercept keystrokes on the virtual keyboard?

How to intercept button presses virtual keyboard in SurfaceView? Doing so. But nothing is impossible. Help please. InputMethodManager inputMgr = ...
0
votes
0answers
143 views

How can I implement a secure virtual keyboard in a desktop app?

Is it available in any existing libraries? By "secure" I mean the input method is secure from keylogging and the positions of the keys randomly change so that there are no fixed positions for an ...
0
votes
1answer
163 views

How to disable the virtual key pad in Android?

I would like to disable the virtual key pad that appears when the focus falls on a edit text element. I've tried it with the following code: ...
0
votes
1answer
193 views

Compatibility Mode Blackberry OS 4.7

I am building an app using JDE 4.5. I need to support 4.5 device OS versions, I can't use JDE 4.7. Therefore, I can't use the Screen.getVirtualKeyBoard.setVisibility(VirtualKeyboard.HIDE) in my code, ...
0
votes
3answers
1k views

Why doesn't the virtual keyboard go away?

I have a pretty simple screen with a couple of EditText widgets and a button. In the emulator, when I click on the EditText widget, a virtual keyboard comes up. However, I can't seem to get rid of ...
0
votes
2answers
483 views

BlackBerry - hide virtual keyboard on a Screen that does not extend MainScreen

Edit: I know how to hide virtual keyboard on a MainScreen (when working with SpinboxField), but I can't hide it when working with a subclass of Screen.
0
votes
2answers
294 views

How to make keyboard appear at top of screen

When the user touches a UITextField a keyboard normally slides up from the bottom of the screen. Is there a way to make the keyboard appear at the top of the screen instead of the bottom?
0
votes
1answer
202 views

Virtual Keyboard only shows after two taps

I have an app that has only one Webview and some buttons. On the webview I show a website that contains one textbox. Sometimes, when I tap the textbox the virtual keyboard does not show, and I have ...
0
votes
2answers
1k views

Specifying virtual keyboard type for EditText in XML

I'm creating a ListActivity. In each list item I have a View I've created which contains a RatingBar and an EditText. In the screenshot at the bottom, you can see the virtual keyboard contains a ...

1 2