Tagged Questions

5
votes
1answer
4k 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, ...
4
votes
1answer
121 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 ...
2
votes
1answer
564 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 ...
2
votes
1answer
1k 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() { ...
1
vote
1answer
53 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 ...
1
vote
1answer
226 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 the tutorial to build a tip calculator, you can download the code at: ...
0
votes
3answers
124 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
31 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 ...