How can I simulate landscape orientation in the android simulator?

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

Try hitting ctrl+F12 :)

link|improve this answer
feedback

what do you mean by Horizontal simulation? If you are talking about activity orientation then either you can define that in AndroidManifest xml file like this:

<activity ....
android:screenOrientation="landscape"/>
Or if you want to do in the code then you can request orientation on your activity object:
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

link|improve this answer
yes, but when i am testing in the simulator, is there any way to turn my virtual device to landscape so I can test it properly? – Sheehan Alam Sep 3 '10 at 4:58
2  
if you are on mac the try pressing Fn+Ctrl+F12. – bhups Sep 3 '10 at 5:26
bhups, that is exactly what im looking for. THanks! – Sheehan Alam Sep 3 '10 at 16:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.