【android开发】简单记录在代码中获取屏幕自动旋转开关状态
可以通过Settings.system方法获取设置的值
Settings.System.getInt(getContentResolver(),Settings.System.ACCELEROMETER_ROTATION)
返回的数值为0代表关闭,返回数值为1代表开启。
文档中说明:
The Settings provider contains global system-level device preferences.
设置提供程序包含全局系统级设备首选项。
不难看出在这个类中可以获得很多的设置项的值。
系统设置,包含各种系统首选项。