Tagged Questions
The onkeydown tag has no wiki summary.
4
votes
3answers
3k 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 ...
4
votes
3answers
6k views
WPF: OnKeyDown() not being called for space key in control derived from WPF TextBox
In a WPF application, I have a control that I have derived from TextBox like this:
public class SelectableTextBlock : TextBox
{
protected override void OnKeyDown(KeyEventArgs e)
{
...
3
votes
1answer
720 views
Soft keyboard without an EditText & detecting key presses
How can I detect key presses reliably with a hard or soft keyboard?
My app remotely controls another device over wifi, and I need to detect every key press on either a soft or hard keyboard. I don't ...
3
votes
3answers
348 views
Can't find asp:textbox in Javascript
I am trying to add the onkeydown attribute to an asp:textbox. For some reason my code can't find the textbox that is inside a loginview.
Am I doing something wrong?
<script ...
3
votes
3answers
2k views
How to capture a backspace on the onkeydown event
I have a function that is triggered by the onkeydown event of a textbox. I need to know if the user has hit either the backspace key or the del key.
Thanks in advance
3
votes
3answers
5k views
onKeyListener not working with soft keyboard (Android)
I am using onKeyListener to get the onKey events. It works fine with the normal keyboard. But it does not work with soft keyboard. I am only able to get onKey events for numerics and not alphabets. Is ...
2
votes
3answers
146 views
android - onKeyDown mFlags variable
I have a log that came back from onKeyDown event and the flag resulted in the number 520. How do I find out what the flag is? I assume its 520 = 512 + 8 = FLAG_TRACKING + FLAG_FROM_SYSTEM
I need to ...
2
votes
2answers
478 views
Fake KeyEvent doesn't work *exactly* like “real” button. Why?
I am trying to invoke my main activity's onKeyDown() with KEYCODE_BACK, so that it behaves as if I pressed the 'back' button myself. I do that using the following code:
KeyEvent goBackDown = new ...
2
votes
1answer
291 views
How to intercept key events while menu is displayed
I have already overriden the onKeyDown (int keyCode, KeyEvent event) method of my Activity in oder to log user key presses. I have further extended all Views I use in the layout and overriden the ...
2
votes
2answers
370 views
Is there a way to set the window's scroll position without using scroll() or scrollTo()?
...the reason I ask is that Safari has a bug in its implementation of scroll() that is breaking my UI.
Imagine a page:
<body>
<div id="huge" style="width: 4000px; height: ...
2
votes
2answers
1k views
Capturing onkeydown in Javascript
I have a web front-end to an AS/400 CGI application which allows the use of some of the F1-F24 keys (depending on the page) as well as page-up, page-down etc - these are passed to the underlying ...
1
vote
3answers
47 views
not going into Onkeylistener ?Not able to figure out
package woot.wat.wen;
import android.app.Activity;
import android.os.Bundle;
import android.text.Layout;
import android.util.Log;
import android.view.KeyEvent;
import android.view.View;
import ...
1
vote
2answers
168 views
Block characters in Edit Control using MFC (Example for only floats)
I'm trying to block certain types of characters from being inserted into my Edit Control by overwriting OnChar and OnKeydown. I'm trying to block more than one point '.' and anything that is not a ...
1
vote
4answers
56 views
jquery - in keyDown erase text from input
I have a input box that i have some text in site
<input type="text" value="Enter Name"/>
Now i need to add that when the user starts typing in something (enters the first letter), my text ...
1
vote
0answers
171 views
Calling javascript functions in a webview from activity class
Edit: This snipped worked in the end. I had been trying this before but was actually experiencing a scoping issue with my javascript. I had appBack() defined in document.onready. Simply re-scoping ...
1
vote
1answer
171 views
Android: Back button bypasses onKeyDown and closes application
I have a program with 4 different tabs.
One of these tabs is an ActivityGroup which has a ListView in it. When I click on one of the list items, it switches to WebActivity:
...
1
vote
1answer
247 views
OnKeyListener() not executing
Would someone kindly suggest why the code in the OnKey() method is not executing. Please note that I am attempting to trigger this my hitting the "Search" button on the android key board.
Here is the ...
1
vote
0answers
164 views
Prevent Gallery images from overlapping without using setSpacing
Is there a way to prevent gallery images from overlapping without using setSpacing?
My gallery uses auto rotation made with g.onKeyDown(KeyEvent.KEYCODE_DPAD_RIGHT, null); which is apparently is the ...
1
vote
1answer
88 views
trouble with onkeydown event block all input except numeric, but allow enter to submit form?
I am having trouble with a form that displays results drawn out of a mysql database, based on a user supplied string.
An order form, so to say. And in this form there is a quantity field. I have ...
1
vote
2answers
602 views
Android: How to control the home button
We're trying to provide an application to the mentally and physically handicapped daughter of my neighbor that let's her use an Android tablet as a Talker, i.e., she presses a few big buttons and the ...
1
vote
0answers
144 views
Catching special key events in android
I have a onKeyDown event that can catch all the regular character events, like "a", "b", "c" and so on. But I can't figure out how to register special characters like "æ", "ø" and "å" from the Danish ...
1
vote
0answers
443 views
onKeyDown / onBackPressed is not firing
In which cases are onKeyDown, onBackPressed not firing?
In my case I have a TabActivity with a ActivityGroup in background where all the upcoming views/activities are stored. The ActivityGroup takes ...
1
vote
2answers
413 views
Android: intercepting back key
since the back key destroys my application and all data will be lost I need to intercept it to ask the user if that is really what he wants.
I thought of the following structure:
@Override
...
1
vote
4answers
473 views
need help in Home Button in android
hi all i want to intercept my Home Button.
what i want is that whenever i press a Home Button i want to display a Alert dialog for Are you sure you want to Quit. if Yes then Finish the activity else ...
1
vote
1answer
65 views
In WPF how can I duplicate the old WinForms OnKeyPressed functionality?
We have a WPF application where we need to detect if the user is typing something that can appear in a textbox. WinForms used to have a nice OnKeyPressed override that differed from OnKeyDown in that ...
1
vote
2answers
374 views
Dialog shown twice when back button pressed
In code the dialog is shown two times when i press the back button. Can anyone please tell me how to get the dialog only once?
public boolean onKeyDown(int keyCode, KeyEvent event)
{
if ...
1
vote
1answer
653 views
WPF - Build a string of pressed keys using KeyDown in ListView
I have a listview with a dozen of rows binded to xml. I'd like to have a possibility to locate and position the cursor to a certain record. For example:
I have a with these ID, Name, Value:
1, Johny, ...
1
vote
2answers
226 views
JavaScript key handling and browser compatibility
I'm working on key handling in java script. I have done some research and I'd like to know whether I have a correct understanding of key handling.
KeyDown/KeyUp Event
The key down and key up events ...
1
vote
2answers
328 views
How do I keep my cursor/caret from moving inside of an input text element?
I'm trying to build a form that works in a manner similar to the Google Search page, as well as Gmail and several other pages (including the this page - see the "Tags" input on the Ask Question page). ...
1
vote
3answers
435 views
Continuous onkeydown event in Firefox
I have a regular onkeydown event handler that fires a function, like this:
window.onkeydown = onKeyDown;
It essentially works, but it only captures 1 key in Firefox. Then I have to release it and ...
1
vote
1answer
336 views
WPF OnKeyUp in UserControl not firing
I have Window with UserControl. I subscribed for OnKeyUp event but it does not firing.
Inside UserControl constructor i use method this.Focus();
But still onkeyup does not firing.
What is wrong and ...
1
vote
7answers
13k views
Android: onKeyDown() problem
I would like to create a photo/video capture application.
I have created a CaptureView class which extends SurfaceView and placed it in the main form.
The main form's activity has ...
0
votes
2answers
22 views
How to disable facebook hotkeys with Chrome extension?
I have created a Chrome extension that uses the hotkeys [Alt]+[0...9] only to discover facebook uses the same hotkeys. Is there any way possible my extension could disable facebook's hotkeys so that ...
0
votes
0answers
27 views
TabActivity OnKeyDOWN Event in Child Activity SDK 4.0
I am using ViewFlipper in different Activity hosted in TabActivity and flipping views on ONKEYDOWN event. Its working fine using
SDK 2.3 but when I am changing old SDK to 4.0 SDK and start getting ...
0
votes
0answers
13 views
Cloning Keyboard Actions to Non-Focused Windows
I am trying to do something called multi-boxing (playing multiple characters in a game from different instances of the game running) and running into a small problem. One instance runs in Sandboxie, ...
0
votes
2answers
90 views
window.frames[0].document.onkeydown not working in Firefox
I have this line not working in Firefox (works perfectly fine in IE and Chrome)
ste.frame.document.onkeydown=function(e) {
alert('a');
};
here ste.frame is a window object [object Window]. I ...
0
votes
1answer
64 views
Navigate Between Avtivities in an ActivityGroup
I'm developing an app which contain TabHost ,in one of those tabs i have an ActivityGroup , and from this ActivityGroup, i launch another SubActivity ( let's say that i Launch an Activity A ), and ...
0
votes
0answers
54 views
Intercept Hardware Search Button to interact with a view
I wanted to send along an answer to a question that I had. I wanted to interact with a view, which is defined in a layout in my res folder, using my phone's search button. Basically making an ...
0
votes
2answers
78 views
Hw to capture app switch key using onKeyDown in Android
I am trying to capture app switch key and home key on android 3.1 and 4.0 but it doesn't seem like its working.
here is what I am doing
@Override
public boolean onKeyDown(int keyCode, KeyEvent ...
0
votes
0answers
21 views
Override onkeydown of listview
How could i override onkeydown of listview, i wanna set him to do nothing, thanks. Is there other solution instead of extending listview class? and if extending the listview class is the
solution, ...
0
votes
0answers
32 views
method onKeyDown in android how use Key release?
Hi i have a problem with my program :
public boolean onKeyDown(final int pKeyCode, final KeyEvent pEvent) {
if(pKeyCode == KeyEvent.KEYCODE_DPAD_DOWN && pEvent.getAction() == ...
0
votes
1answer
31 views
Which interface is used to detect key events from the Dialog class (Android SDK)?
I've created a simple custom dialog that asks users to "Press a key". The purpose of this is so that I can map whatever key they press to a function in the app. Unfortunately, I can not figure out ...
0
votes
0answers
34 views
Blackberry 4.6 Javascript KeyDown Event
Does blackberry OS4.6 support preventing default from happeing on the onkeydown event? I'm trying to allow only numbers in a text field but can't cancel the event. This means all keys are entered into ...
0
votes
0answers
21 views
Keypress in javascript in IE with Flash/Flex
I have a question similar to this Keypress in javascript in IE.
Would there be a work around if I dont have control over the flex/flash application.
0
votes
1answer
76 views
Android on key down
I am working on a mini game for Android. When I click and hold down the button that I am clicking I expect that a event should be triggered once at a interval of time.
public boolean onKeyDown(int ...
0
votes
0answers
163 views
AS2 - onKeyDown issue when a button is focused
I have an event listener that catches the enter key when the focus is on a text box, however when I tab out of the box which then focus' on the submit button and hit the enter key it does nothing. ...
0
votes
2answers
85 views
Android EditText OnKeyDown event in xml
Is there any way to assign the OnKeyDown event to an EditText in the xml?
I know how to do it in the code, but XML?
(actually i wan't to capture the 'enter' press... so maybe there is an easier ...
0
votes
2answers
141 views
Detection of Backspace on KeyDown
I am working on a silverlight web app. It interacts with a module that sends SMS's. I want to limit the text to 160 and show a counter. I did it like this:
public partial class SendSMSView
{
...
0
votes
1answer
56 views
How to capture a string using onkeydown before it received by the text field
I am trying to find a way to get more than one characters pasted on html text field (input type=text), using onkeydown or onkeypress, I am NOT interested in onkeyup(it works), so please do not suggest ...
0
votes
1answer
104 views
Where in Android source does the KeyEvent dispatcher send to onKeyDown?
Where in the Android source code does Android call onKeyDown() when it receives notification from the hardware that a key was pressed?