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.
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.
Android Emulator Shortcuts
Ctrl+F11 Switch layout orientation portrait/landscape backwards
Ctrl+F12 Switch layout orientation portrait/landscape forwards
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
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
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
Just screen cannot be tilted. Phone itself turns to landscape and followed be screen rotation. See this for more help.
on your activity:-
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
or
on your manifest:-
<activity android:name=".MyActivity"
android:configChanges="keyboard|keyboardHidden|orientation" />
Try this,
please check your manifest.xml
. suppose you gave screenOrientation please remove it.
android:screenOrientation="portrait"