开发者

Set Rotation throughout application

Is there a way to set the application's orientation (not just in one activity) programatically开发者_StackOverflow?


write every activity onCreate() method

//---change to landscape mode---
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

//---change to portrait mode---
         setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

may be work..

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜