views:

71

answers:

1

I am using the AVD manager in eclipse. Is there a setting that I can use to stop the on screen keyboard appearing when an input field has focus?

I tried has hardware keyboard = true, but then the emulator doesn't seem to start at all :-S

+1  A: 

The item you probably need to add to the AVD config is: hw.keyboard=no.

Perhaps also changing the config to not have a touchscreen would help.


Update:
Uh, I got that first part the completely wrong way around. I meant to say the device should have a physical keyboard, therefore negating the need for a soft keyboard.

Anyway, I tried it out now and this configuration combination works for me:

hw.keyboard=yes
hw.touchScreen=no

The AVD has a physical keyboard, but no touchscreen, therefore only the physical keyboard can be used for text input, and the emulator does not show the soft keyboard.

Christopher
No such luck :-(
Chris
Updated my answer.
Christopher