开发者

how do i change the orientation in android

开发者 https://www.devze.com 2023-02-22 03:03 出处:网络
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

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);
0

精彩评论

暂无评论...
验证码 换一张
取 消