Enable and disable auto rotate programmatically?

后端 未结 4 1594
孤城傲影
孤城傲影 2020-11-28 08:26

There are a lot of cool widgets out there that will enable and disable auto rotate on your phone. Disabling it turns it off across all apps on the phone.

Any ideas

4条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-28 08:39

    Always use user specified screen orientation, this will apply whatever orientation user has choose and will not rotate screen if its disabled.

    activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_USER);
    

提交回复
热议问题