其他分享
首页 > 其他分享> > 【android开发】简单记录在代码中获取屏幕自动旋转开关状态

【android开发】简单记录在代码中获取屏幕自动旋转开关状态

作者:互联网

【android开发】简单记录在代码中获取屏幕自动旋转开关状态

可以通过Settings.system方法获取设置的值

Settings.System.getInt(getContentResolver(),Settings.System.ACCELEROMETER_ROTATION)

返回的数值为0代表关闭,返回数值为1代表开启。

文档中说明:
The Settings provider contains global system-level device preferences.

设置提供程序包含全局系统级设备首选项。

不难看出在这个类中可以获得很多的设置项的值。
在这里插入图片描述
系统设置,包含各种系统首选项。

标签:Settings,System,system,开关,设置,android,首选项,屏幕
来源: https://blog.csdn.net/weixin_44794371/article/details/120516808