gpt4 book ai didi

android - 如何以编程方式在 Android 中打开/关闭通知?

转载 作者:IT老高 更新时间:2023-10-28 21:57:25 25 4
gpt4 key购买 nike

我到处搜索,但在 SDK 或 Google 上找不到任何关于如何执行此操作的内容。我知道这是可能的,因为所有自定义启动器都可以通过按下按钮(LauncherPro、ADW 等)来实现。

谢谢。

最佳答案

您可以通过广播 ACTION_CLOSE_SYSTEM_DIALOGS 以编程方式关闭通知抽屉 Intent 。

这会导致“临时系统对话框”被关闭。来自文档:

Some examples of temporary system dialogs are the notification window-shade and the recent tasks dialog.

这不需要任何权限,并且显然从 Android 1.0 开始就可以使用。

以下代码适用于我在运行 Android 5.0 的 Nexus 4 上:

Intent closeIntent = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
context.sendBroadcast(closeIntent);

关于android - 如何以编程方式在 Android 中打开/关闭通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5029354/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com