2

How can I rotate emulator display (not the complete emulator) because my Honeycomb display is tilted 90o.

I tried pressing Ctrl + F12, Num 7 and 9, but the complete emulator is shown in portrait mode. I need to tilt only the display.

Srujan Simha
  • 3,637
  • 8
  • 42
  • 59
  • possible duplicate of [Switching to landscape mode in Android Emulator](http://stackoverflow.com/questions/2618967/switching-to-landscape-mode-in-android-emulator) – akshay Dec 05 '13 at 08:59

5 Answers5

8

Android Emulator Shortcuts

Ctrl+F11 Switch layout orientation portrait/landscape backwards

Ctrl+F12 Switch layout orientation portrait/landscape forwards

  1. Main Device Keys

Home Home Button

F2 Left Softkey / Menu / Settings button (or Page up)

Shift+F2 Right Softkey / Star button (or Page down)

Esc Back Button

F3 Call/ dial Button

F4 Hang up / end call button

F5 Search Button

  1. Other Device Keys

Ctrl+F5 Volume up (or + on numeric keyboard with Num Lock off) Ctrl+F6 Volume down (or + on numeric keyboard with Num Lock off) F7 Power Button Ctrl+F3 Camera Button

Ctrl+F11 Switch layout orientation portrait/landscape backwards

Ctrl+F12 Switch layout orientation portrait/landscape forwards

F8 Toggle cell network

F9 Toggle code profiling

Alt+Enter Toggle fullscreen mode

F6 Toggle trackball mode

insomniac
  • 11,146
  • 6
  • 44
  • 55
akshay
  • 5,811
  • 5
  • 39
  • 58
1

You can change orientation of the emulator using left ctrl+F11 key .

Ctrl+F11 or Ctrl+F12 to change the orientation of the android emulator on windows

GrIsHu
  • 29,068
  • 10
  • 64
  • 102
0

Just screen cannot be tilted. Phone itself turns to landscape and followed be screen rotation. See this for more help.

Community
  • 1
  • 1
Misha Bhardwaj
  • 1,377
  • 10
  • 14
  • But I don't know I unknowingly pressed some keys before and the display got tilted, and now I'm not able to revert it back. – Srujan Simha Feb 07 '13 at 04:40
0

on your activity:-

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

or

on your manifest:-

<activity android:name=".MyActivity"  
android:configChanges="keyboard|keyboardHidden|orientation" />
duggu
  • 37,851
  • 12
  • 116
  • 113
-1

Try this,

please check your manifest.xml. suppose you gave screenOrientation please remove it.

 android:screenOrientation="portrait"
MuraliGanesan
  • 3,233
  • 2
  • 16
  • 22