How can I simulate landscape orientation in the开发者_StackOverflow android simulator?
Try hitting ctrl+F12 :)
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);
精彩评论