以上命令报错:Error: Not found; no service started.
时间: 2024-03-21 15:40:06 浏览: 101
这个错误通常出现在某些 Android 版本上,因为它们不允许直接启动系统服务。你可以尝试以下命令来发送通知:
```
adb shell am broadcast -a android.intent.action.NOTIFICATION -c android.intent.category.DEFAULT -n com.android.systemui/.service.NotificationPlayer -f 0x10 --es title "notification_title" --es text "notification_text" --ei icon "icon_id" --ei id 100
```
这个命令将发送一个具有指定图标、标题和文本的通知,你需要将 "notification_title" 替换为通知的标题,"notification_text" 替换为通知的文本,"icon_id" 替换为你想使用的图标的 ID,"100" 替换为通知的 ID。
阅读全文