Tagged Questions
1
vote
1answer
132 views
Inject accents KEY events in android
The situation is the following:
I'm sending remotly events to my devices (I have totally access to it). This events are KEY events, so I'm injecting them directly to /dev/input/event*
I'm doing a ...
0
votes
1answer
126 views
Show inputMethod and get keycode on Key pressed Android
I know that there are some other post asking similar things, but I could not figure it out how to do it.
My situation is the following:
I have a FragmentActivity with few fragments, on of this is a ...
0
votes
1answer
86 views
Reading Keycode / Keychar from software keyboard
what I need is:
Bring up the software keyboard on a button click. There are lots of answers here for that.
As soon as the user presses any key on the softwarekeyboard (except switch ime, ... ) I ...
0
votes
0answers
71 views
Adobe Air on Android - caching key event that have “unusual” keycode
I am developing an application for a platform.
The OS of this platform is Android Gingerbread (2.3.4)
The platform has some buttons with "unusual" key code: 141, 131 etc.
Native application that ...
0
votes
1answer
514 views
How do I convert key code to char or String to show it on TextView [duplicate]
Possible Duplicate:
How can I convert a key code into a char or string?
Hey I'm pretty new to Android and unsure how to use getKeyCode. I have this
public boolean onKeyDown(int keyCode, ...
2
votes
1answer
286 views
Android KeyCode Capital Letter?
I'm making a soft-keyboard using XML Keyboard like this :
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="11.11%p" android:horizontalGap="0px"
...
0
votes
2answers
462 views
KEYCODE_POWER only dispatched on long press
Why does this key only get dispatched on a long press. Im trying to have it so that normal press of the power button mutes the currently playing audio in the Ringer stream. It only works on long ...
1
vote
1answer
388 views
Android mute button
Some new Android devices have a mute button like Iphone. Its an actual physical button that allows you to mute an incoming call instead of long pressing the volume down hardware control or the ...
1
vote
0answers
338 views
KEYCODE_DPAD_CENTER event not captured inside onClick
I have a custom view which extends a ViewGroup. Each of the child view has 3 states
Selected state
Clicked state
Default state
I have implemented onClickListener inside this CustomView. The issue ...
1
vote
1answer
663 views
Android Keycodes for Symbols
I need some help developing my new custom built input method. I'm using InputConnection.sendKeyEvent to send new KeyEvents directly to applications. The problem is that I can't seem to find Keycodes ...
0
votes
2answers
310 views
keycode center button samsung galaxy s
I´m tryning to capture event of the front key´s Samsung galaxsy S but i don´t know the correct code, I check this:
if (event.getAction() == KeyEvent.ACTION_DOWN)
{
...
1
vote
1answer
184 views
setText on EditText with an EventKey
I'm trying to develop a widget with an EditText (only int allowed) and KeyEvent. The problem is when '0' is pressed, It detects the KeyEvent but It doesn't write the '0' on my EditText. It should add ...
0
votes
1answer
466 views
keyCode == KeyEvent.KEYCODE_F wont work
I have a problem with my android algorithm. I want some certain thing happends when the user presses f. or any word, i've tried most of them and the space, the only codition that's working is:
if ...
0
votes
1answer
154 views
Some keys are not reading by onkeyup and onKeyDown in Android
If we pressed the division symbol and multiplication symbol in Android Soft keyboard, then the onKeyup() and onKeydown() in android is not working.
Any Help ?
1
vote
1answer
705 views
Get Unicode character from onKeyDown event in android
I want to get Unicode character when I input into soft keyboard (I use key down event).
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
//I tried this but not work
...
2
votes
1answer
192 views
Having trouble reading key events. (newby)
I'm trying to read a few of the keys on a device as well as read values from the touch screen. The touch screen is working fine, extracting values to _x and _y and sending them to my renderer class. I ...
0
votes
1answer
81 views
If AI presses buttons - what buttons to press (key codes)
I'm programming an android game, where AI, like human, "presses buttons" - sends key events (KeyUp and KeyDown). I know, that there are some instrumental buttons like turn off, menu, etc. I'm using ...
0
votes
1answer
664 views
Android keycode_back closes application
I want the back button on the android phone to act like the back button for my web browser. At present, it closes the application instead of going back to the previous screen.
I wrote this ...
0
votes
1answer
3k views
Doubt with KeyEvent.KEYCODE_BACK in Android
I have 3 activities.
1st activity has a 'go right' image button. (to move to 2nd activity)
2nd activity has both 'go right' and 'go left' image buttons. (to go back to 1st activity or move to 3rd ...
6
votes
4answers
6k views
How can I convert a key code into a char or string?
How to convert the keycode in to char or string??
here is the example code:
public boolean onKey(View v, int keyCode, KeyEvent event) {
// TODO Auto-generated method stub
...
2
votes
3answers
28k views
android - setOnClickListener;
I have been messing around with the Snake example code and I am trying to mod this for the sake of training, and hopefully increased understanding of how Android works.
So far I have added two ...
1
vote
0answers
1k views
How to disable search key and camera key while displaying menu?
I've created a menu in my one activity as follows:
/menu/my_menu_list.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
...
0
votes
1answer
578 views
Android detect parenthesis and special character input, before api 11
I have a screen where I want the user to only input numbers in the text field. I already force a number pad to open in Android, and I am detecting numbers based on their ascii value.
I am ...
1
vote
2answers
662 views
How to call power off,reboot dialog from application?
I would like to call power off,reboot, etc.. dialog as same as default android dialog when push power button long from my application.
I no need to call directly reboot,power off, etc... from my ...
2
votes
1answer
1k views
Android - Listen for key presses on Numeric keypad?
I use the following code to listen for the key presses of 0 - 9 from the soft input keyboard on Android:
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
...
0
votes
1answer
612 views
TabActivity and onKeyDown
I have created games with 3 tabs and one of the tab is the game using the onKeyDown (KEYCODE_DPAD_LEFT and KEYCODE_DPAD_RIGHT) to control the game. It is working fine if there is no tab. But now with ...
