I want to swich the orientation of an app (without the user turning the phone.) 开发者_高级运维How would i go about doing that?
Within an activity, you can do
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
Or the following for portrait:
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
精彩评论