有没有办法扩展/折叠Android手机的状态栏ADB?
ADB
Shell进入设备(带adb shell)并使用以下命令展开/折叠状态栏:
adb shell
# Expand status bar service call statusbar 1 # Collapse status bar service call statusbar 2
注意:如果设备已植根,则可能需要将命令调用为su(with adb shell su).
su
adb shell su
服务调用是在非root设备上测试的.