如何在通知按钮单击后关闭状态栏/通知面板

时间:2013-03-22 11:04:59

标签: android notifications statusbar

我浏览过Stackoverflow并看到已经问过这个问题,但我找不到任何解决方案。

我有2个按钮的自定义通知。我希望状态栏面板在我按下该通知上的按钮后关闭,但不知道如何。如果我按下通知本身(所以是contentIntent),那么面板会关闭,这也是我对按钮的要求。

这是我的通知代码:

Notification notification = new Notification(R.drawable.icon, "Service running", System.currentTimeMillis());
notification.flags |= Notification.FLAG_ONGOING_EVENT;
notification.contentIntent = openIntent;
RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.notification_layout);


contentView.setOnClickPendingIntent(R.id.button1, stopIntent);
contentView.setOnClickPendingIntent(R.id.button2, addIntent);

notification.contentView = contentView;

notificationManager.notify(NOTIFICATION_ID, notification);

2 个答案:

答案 0 :(得分:97)

使用以下两个代码行来折叠通知栏。

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

答案 1 :(得分:2)

好的,我找到了解决方案。它不是公共API,但它(目前)有效:

Object sbservice = c.getSystemService( "statusbar" );
                    Class<?> statusbarManager = Class.forName( "android.app.StatusBarManager" );
                    Method hidesb = statusbarManager.getMethod( "collapse" );
                    hidesb.invoke( sbservice );

为此起作用

<uses-permission android:name="android.permission.EXPAND_STATUS_BAR"/>
需要