简体   繁体   中英

Get Auto-Rotate Information On Android

I am working on an app for Android, for which I would like to know whether or not Auto-Rotate is enabled. Does anybody know how I can get this? So just for clarity: I only need to know whether or not a user has Auto-Rotate enabled in their settings or not.

You can Get Auto-Rotate Information On/Off Using Settings.System.ACCELEROMETER_ROTATION as :

if (android.provider.Settings.System.getInt(getContentResolver(),Settings.System.ACCELEROMETER_ROTATION, 0) == 1){
 Toast.makeText(Rotation.this, "Rotation ON", Toast.LENGTH_SHORT).show();

}
else{
 Toast.makeText(Rotation.this, "Rotation OFF", Toast.LENGTH_SHORT).show();
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM