以编程方式打开Android通知

时间:2018-07-03 18:37:40

标签: android android-notifications android-tv

是否可以在我的应用中打开“通知菜单”?我正在寻找类似于下面打开系统设置侧栏的解决方案:

startActivityForResult(new Intent(android.provider.Settings.ACTION_SETTINGS), 0);

2 个答案:

答案 0 :(得分:0)

我找到了解决方案,看起来下面的示例可以完成工作。但是我找不到关于 com.android.tv.NOTIFICATIONS_PANEL 操作的任何文档。

Intent notificationIntent = new Intent("com.android.tv.NOTIFICATIONS_PANEL");
startActivity(notificationIntent);

答案 1 :(得分:0)

我认为您可能想尝试使用toastsnotification-android-tv

另外,请注意:

  

通知将仅显示为建议,而不显示为   “通知”

有关更多信息,请参阅此SO post