6

Is there any way to expand/collapse status bar of Android phone over ADB?

4

3 回答 3

18

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

# Expand status bar
service call statusbar 1
# Collapse status bar
service call statusbar 2

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


服务调用在非 root 设备上进行了测试。

于 2015-12-04T16:38:24.860 回答
10

另一种方式。通过使用“ 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

于 2017-11-15T23:52:51.047 回答
-1

如果你想通过 adb 将 android 设备的通知信息拉到你的 shell,你可以使用这个命令
adb shell dumpsys notification

如果你想下拉通知区域,你可以试试mokeyrunner

于 2015-12-04T07:40:05.420 回答