如何通过亚行展开/折叠状态栏?

Vai*_*shi 5 shell android adb android-service android-statusbar

有没有办法扩展/折叠Android手机的状态栏ADB

Oni*_*nik 13

Shell进入设备(带adb shell)并使用以下命令展开/折叠状态栏:

# Expand status bar
service call statusbar 1
# Collapse status bar
service call statusbar 2
Run Code Online (Sandbox Code Playgroud)

注意:如果设备已植根,则可能需要将命令调用为su(with adb shell su).


服务调用是在非root设备上测试的.


Won*_*nil 7

其它的办法。通过使用“ adb shell cmd

  1. 扩张

adb shell cmd statusbar expand-notifications

  1. 坍塌

adb shell cmd statusbar collapse

  1. 您也可以扩展快速设置

adb shell cmd statusbar expand-settings

请查看帮助以获取更多信息:

adb shell cmd statusbar help