Anybody have any ideas?
On Thu, Oct 21, 2010 at 3:21 PM, [email protected] <[email protected]>wrote:
> 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) {
>
> if(keyCode == KeyEvent.KEYCODE_0)
> {
> return super.onKeyDown(keyCode, event);
> }
>
> if(keyCode == KeyEvent.KEYCODE_1)
> {
> return super.onKeyDown(keyCode, event);
> }
>
> if(keyCode == KeyEvent.KEYCODE_2)
> {
> return super.onKeyDown(keyCode, event);
> }
>
> if(keyCode == KeyEvent.KEYCODE_3)
> {
> return super.onKeyDown(keyCode, event);
> }
>
> if(keyCode == KeyEvent.KEYCODE_4)
> {
> return super.onKeyDown(keyCode, event);
> }
>
> if(keyCode == KeyEvent.KEYCODE_5)
> {
> return super.onKeyDown(keyCode, event);
> }
>
> if(keyCode == KeyEvent.KEYCODE_6)
> {
> return super.onKeyDown(keyCode, event);
> }
>
> if(keyCode == KeyEvent.KEYCODE_7)
> {
> return super.onKeyDown(keyCode, event);
> }
>
> if(keyCode == KeyEvent.KEYCODE_8)
> {
> return super.onKeyDown(keyCode, event);
> }
>
> if(keyCode == KeyEvent.KEYCODE_9)
> {
> Log.d("Keycode", "Got KeyCode 9");
> return super.onKeyDown(keyCode, event);
> }
>
> return true;
> }
>
> ---
>
> The code works when i display the soft input keyboard in the following
> mode:
>
> http://i.imgur.com/Snasz.png
>
> However it does **not** work when I display the soft input keyboard in
> the following mode:
>
> http://i.imgur.com/wf0Kt.png
>
> Why is this?
>
>
>
>
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en