31

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);
4

2 に答える 2

120

次の2つのコード行を使用して、通知バーを折りたたみます。

Intent it = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
context.sendBroadcast(it);
于 2013-12-06T09:36:33.917 に答える
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"/>

必要です

于 2013-03-22T13:38:55.207 に答える