Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse Android Emulator - Keyboard not working

I just updated to the latest SDK version 16 created a new version of an AVD using the latest version of the API (16) and my hardware keyboard doesn't work anymore on the emulator (even my other avd using an older version of the sdk).

Any ideas how to fix this?

like image 400
Jerome Ansia Avatar asked Sep 10 '25 06:09

Jerome Ansia


2 Answers

Do you have "Keyboard Support" hardware property set to "yes" for your AVD? Last time I updated Android SDK etc. the process trashed my adb configuration. So maybe it influenced your other emulator as well.

like image 78
wojciii Avatar answered Sep 12 '25 21:09

wojciii


Go into the config.ini and added the line for the keyboard support i have to do this for my others avd devices as well to make them all work!

Add: hw.keyboard=yes

To: ~/.android/avd/<emulator-device-name>.avd/config.ini

like image 33
Jerome Ansia Avatar answered Sep 12 '25 22:09

Jerome Ansia