Tagged Questions
0
votes
1answer
75 views
KeyListener working on emulator but not working on device
I'm having a problem with the keylistener on my android app. When testing on the emulator, it works great, but after exporting the APK and trying on my real device, it doesn't work anymore.
I saw a ...
0
votes
0answers
93 views
Two EditText fields with one onClickListener
I am trying to create two text fields with data input (one for String and another for int value). When user have inputted String data to first field he should move to the second one after virtual ...
0
votes
0answers
949 views
Android onkey - dispatchKeyEvent not firing
well, I've tried all the solutions I could find on stackoverflow and in other places, but the end result hasn't changed one bit: the only key that triggers the onKey event or the dispatchKeyEvent is ...
0
votes
2answers
797 views
Android onKeyListener on EditText only responds to “Enter” key when pressed twice
I have an EditText that I want to respond to a user pressing the "Enter" key. Here is the relevant code:
EditText edittext = (EditText) findViewById(R.id.user_query);
edittext.setOnKeyListener(new ...
1
vote
1answer
984 views
Android. Backspace/delete key not functioning.
When onKeyListener is set Backspace/delete key is not functioning.
I set an OnKeyListener on my EditText. Then default actions of some keys became not functioning. Like DELETE/Backspace. Then I ...
4
votes
1answer
462 views
Programming “enter” and “shift-enter” for EditText using a soft keyboard
I am developing an Android application that makes use of EditText (Multiline). The devices I am testing it on lack hard keyboards, so as a result I (obviously) use the soft keyboard. When I ...
1
vote
3answers
2k views
Android - Want to restrict some charaters to the edittext
I got stuck up with the following scenario.
I have an edit text and its a Password field. And I want to restrict some characters like (a-z, A-Z, 1-0 and some special chars). I set the inputType of ...
0
votes
1answer
124 views
Dispatching a KeyEvent after the current event is finished?
I have an OnKeyListener(), living in a class that extends an EditText, that when the enter key is pressed checks for a certain character at the end of the line and if it exists dispatches another ...
2
votes
1answer
1k views
Android: EditText delete key not registering on first keydown
My problem is this;
I have an edit text and am using setKeyListener and creating a new NumberKeyListener. In this on keydown when a number is hit it works as expected, but when the delete/backspace ...
1
vote
1answer
529 views
android key listener doesn't respond to numbers
Has anyone else found that the key listener does not respond when numbers are pressed on keyboard or virtual keypad?
I used a tutorial (broken link to whyandroid removed)
and noticed that the only ...
4
votes
3answers
4k views
Android: KeyListener for an EditText not receiving keys
I have an EditText that I want to monitor KeyEvents for, and I have a listener set up as follows:
mText = (EditText) this.findViewById(R.id.title);
mText.setOnKeyListener(new OnKeyListener() {
...
9
votes
1answer
9k views
Catching key pressed with the virtual keyboard in Android?
With the physical keyboard you can catch key presses with a KeyListener, something like:
myEditText.setOnKeyListener(new OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, ...