Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 468
Zero Avatar asked Oct 12 '12 21:10

Zero


1 Answers

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();
}
like image 149
ρяσѕρєя K Avatar answered Nov 23 '22 02:11

ρяσѕρєя K