タグ付けされた質問 「android-notification-bar」

6
通知は古いインテントエクストラを渡します
次のコードを使用してBroadcastReceiver内に通知を作成しています。 String ns = Context.NOTIFICATION_SERVICE; NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns); int icon = R.drawable.ic_stat_notification; CharSequence tickerText = "New Notification"; long when = System.currentTimeMillis(); Notification notification = new Notification(icon, tickerText, when); notification.defaults |= Notification.DEFAULT_VIBRATE; long[] vibrate = {0,100,200,200,200,200}; notification.vibrate = vibrate; notification.flags |= Notification.FLAG_AUTO_CANCEL; CharSequence contentTitle = "Title"; CharSequence contentText = …

6
Android 4.1:アプリケーションの通知を無効にする方法を教えてください。
Android 4.1では、特定のアプリケーションの通知を無効にするためのチェックボックスがユーザーに提供されています。 ただし、開発者として、通知の呼び出しが有効であったかどうかを知る方法はありません。 現在のアプリケーションで通知が無効になっているかどうかを確認する必要がありますが、APIでその設定を見つけることができません。 コードでこの設定を確認する方法はありますか?
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.