Tagged Questions
0
votes
2answers
76 views
Java converting keycode to string or char
I want to turn keyevent keycode value into a string or a char value. Either one would do.
For example, when I press 'SPACE', which 'lets say' has a keycode 20, and I want to convert that value to a ...
0
votes
2answers
82 views
What's the keycode of the square brackets
I'm trying to use the Robot class in Java and type some text. Unfortunately I'm having problems finding the key codes of the square brackets, this symbol | and this symbol `. I can't find them in the ...
0
votes
2answers
539 views
Java: Convert string to KeyEvent virtual key code?
I'm trying to write a method that will take a single character string and (if possible) return the virtual key code it corresponds to.
For instance:
private static int getKeyCode(final String key) {
...
0
votes
1answer
237 views
getting keytyped from the keycode
I have to send the key code in hexadecimal to a function whose job is to tell which key's code is that. For example key code in java for CONTROL key in hexadecimal form is 0x11. Is there a way i can ...
1
vote
0answers
337 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 ...
0
votes
2answers
308 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 ?
2
votes
1answer
191 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
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 ...
2
votes
3answers
27k 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 ...
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) {
...
2
votes
1answer
752 views
Difference between C++ Keyboard keycode and JAVA KeyEvent keycode
I noticed a difference between the keycodes that vkCode in C++ gives and the ones that Java's KeyEvent gives us. (Ofcourse the normal characters have the same code (0 => 48 just like the ASCII) but ...