Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AVD hardware buttons not enabled

I just downloaded and installed the new Android SDK. When I start the emulator, on the emulator screen it says "Hardward Buttons not enabled in AVD". There are Home, Menu, etc are all disabled. How do I make these buttons enabled?

like image 767
Emmy Avatar asked Feb 26 '13 22:02

Emmy


People also ask

Why my AVD is not working?

In case you get an error like "Intel virtualization technology (vt,vt-x) is not enabled". Go to your BIOS settings and enable Hardware Virtualization. 3) Restart Android Studio and then try to start the AVD again.


2 Answers

You'll need to modify the Device Definitions. To do this, find the "Device Definitions" tab in the Android Virtual Device Manager and double click on the device you're using.

Make sure the Buttons are set to Hardware.

enter image description here

Don't forget to update your device settings:

enter image description here

like image 198
Rowan Freeman Avatar answered Sep 23 '22 19:09

Rowan Freeman


I know it has been a long time since the question was asked, but just to let the others to know.

You can manually edit the config.ini settings (on Windows 7 you can find it on C:/Users/the_user/.android/avd/the_emulator_name/config.ini).

Find out the line:

hw.mainKeys=no 

And change to:

hw.mainKeys=yes 

Hope this helps.

like image 36
tato.rodrigo Avatar answered Sep 21 '22 19:09

tato.rodrigo