> ## Content Index
> Fetch the complete content index at: https://yinguobing.com/blog/llms.txt
> Use this file to discover other available public pages before exploring further.

# 通过ADB旋转Android屏幕朝向
- URL: https://yinguobing.com/blog/change-android-device-orientation-with-adb/
- Published: 2017-03-06T03:10:02.000Z
- Updated: 2022-05-29T08:44:17.000Z
- Description: 如何通过ADB手动旋转Android屏幕朝向。
- Author: 尹国冰
- Tags: Android

首先禁用自动旋转：

```
adb shell content insert --uri content://settings/system --bind name:s:accelerometer_rotation --bind value:i:0

```

这条命令可以将屏幕设置为横向模式：

```
adb shell content insert --uri content://settings/system --bind name:s:user_rotation --bind value:i:1

```

这条命令可以将屏幕设置为纵向模式：

```
adb shell content insert --uri content://settings/system --bind name:s:user_rotation --bind value:i:0

```

来源：[StackOverflow](http://stackoverflow.com/questions/25864385/changing-android-device-orientation-with-adb?ref=yinguobing.com)