adb shell settings put system accelerometer_rotation 0 关闭自动旋转屏幕
adb shell settings put system user_rotation 3 调整显示方向 可选 0 1 2 3
user_rotation Values:
0 # Protrait
1 # Landscape
2 # Protrait Reversed
3 # Landscape Reversed
accelerometer_rotation Values:
0 # Stay in the current rotation
1 # Rotate the content of the screen
import android.provider.Settings; // You can get ContentResolver from the Context Settings.System.putInt(getContentResolver(), Settings.System.ACCELEROMETER_ROTATION, 0); Settings.System.putInt(getContentResolver(), Settings.System.USER_ROTATION, 3);
使用ADB更改Android设备方向 | (1r1g.com)
标签:Settings,更改,System,ADB,Android,屏幕显示,rotation From: https://www.cnblogs.com/wanglongjiang/p/17372108.html