1

I am following a tutorial to learn developing Android applications.

(I'm using Netbeans instead of Eclipse, I don't believe this has anything to do with my problem though).

The point is when I run the program and try to switch the AVD to landscape mode it actually rotates 90 degres but only the device, not the screen contents.

See the snapshot:

landscape mode nok

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
perevera
  • 41
  • 3

2 Answers2

0

The problem seems related with using AVD for Android 4.4.2, as the following post denotes:

Impossible to rotate the emulator with android 4.4

If I use instead an AVD for an older Android version as 4.1.2 the rotation works as expected.

Community
  • 1
  • 1
perevera
  • 41
  • 3
0
  • Close the emulator instance.
  • Edit the virtual device in the Android Virtual Device Manager.
  • Select "Hardware keyboard present" and click "OK".
  • Start the device again.

Should work now.

gotube
  • 671
  • 2
  • 5
  • 22