有没有办法在ADB
上展开/折叠Android手机的状态栏?
答案 0 :(得分:9)
Shell 进入设备(使用adb shell
)并使用以下命令展开/折叠状态栏:
# Expand status bar
service call statusbar 1
# Collapse status bar
service call statusbar 2
注意:如果设备已植根,则可能需要将命令调用为su
(使用adb shell su
)。
服务调用是在非root设备上测试的。
答案 1 :(得分:2)
另一种方式。使用" adb shell cmd
"
1)展开
adb shell cmd statusbar expand-notifications
2)崩溃
adb shell cmd statusbar collapse
3)您也可以扩展快速设置
adb shell cmd statusbar expand-settings
请查看帮助以获取更多信息:
adb shell cmd statusbar help
答案 2 :(得分:-1)
如果您想通过adb将Android设备的通知信息提取到shell,可以使用此命令
adb shell dumpsys notification
如果您想向下拖动通知区域,可以尝试BackgroundColorSpan。