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设备上测试的.