在Android上获取自动轮播信息

Zer*_*ero 6 android screen rotation

我正在开发Android应用程序,我想知道是否启用了自动旋转.有谁知道我怎么能得到这个?所以为了清楚起见:我只需要知道用户是否在其设置中启用了自动旋转功能.

ρяσ*_*я K 14

您可以使用以下方式打开/关闭自动旋转信息Settings.System.ACCELEROMETER_ROTATION:

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();
}
Run Code Online (Sandbox Code Playgroud)