Srujan Simha Adicharla
Srujan Simha Adicharla

Reputation: 3723

Rotate android emulator display

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.

Upvotes: 2

Views: 7609

Answers (5)

akshay
akshay

Reputation: 5979

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

Upvotes: 8

GrIsHu
GrIsHu

Reputation: 23638

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

Upvotes: 1

duggu
duggu

Reputation: 38439

on your activity:-

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

or

on your manifest:-

<activity android:name=".MyActivity"  
android:configChanges="keyboard|keyboardHidden|orientation" />

Upvotes: 0

MuraliGanesan
MuraliGanesan

Reputation: 3259

Try this,

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

 android:screenOrientation="portrait"

Upvotes: -1

Misha Bhardwaj
Misha Bhardwaj

Reputation: 1387

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

Upvotes: 0

Related Questions