Android - Notification: Use of stream types is deprecated for operations other than volume control, but I'm using Notification channelsFailed to post notification on channel “null” Target Api is 26Android: catching application exitHow to make the volume control to control the notification volume?How to open dialog styled activity from notification without previous activity closing?I am trying to set alarm on specific time using alarm manager but alarm initiated instantly?start the same activity after closing itAndroid - replacement for deprecated Notification classAndroid notification not showing more than 3 actionsIncoming call notification volume control streamAndroid 8.1 W/Notification: Use of stream types is deprecatedGet notification channel (or notification settings) for other app
Email Account under attack (really) - anything I can do?
Shell script not opening as desktop application
Is it possible to make sharp wind that can cut stuff from afar?
How old can references or sources in a thesis be?
Why linear maps act like matrix multiplication?
Python: Add Submenu
Why Is Death Allowed In the Matrix?
Motorized valve interfering with button?
Can I make popcorn with any corn?
I probably found a bug with the sudo apt install function
What are these boxed doors outside store fronts in New York?
How can bays and straits be determined in a procedurally generated map?
How to make payment on the internet without leaving a money trail?
Pronouncing Dictionary.com's W.O.D "vade mecum" in English
The use of multiple foreign keys on same column in SQL Server
Is there any sparring that doesn't involve punches to the head?
Why are only specific transaction types accepted into the mempool?
How long does it take to type this?
The Meaning of "Simply a child of her times"
How to report a triplet of septets in NMR tabulation?
"You are your self first supporter", a more proper way to say it
Why has Russell's definition of numbers using equivalence classes been finally abandoned? ( If it has actually been abandoned).
XeLaTeX and pdfLaTeX ignore hyphenation
How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?
Android - Notification: Use of stream types is deprecated for operations other than volume control, but I'm using Notification channels
Failed to post notification on channel “null” Target Api is 26Android: catching application exitHow to make the volume control to control the notification volume?How to open dialog styled activity from notification without previous activity closing?I am trying to set alarm on specific time using alarm manager but alarm initiated instantly?start the same activity after closing itAndroid - replacement for deprecated Notification classAndroid notification not showing more than 3 actionsIncoming call notification volume control streamAndroid 8.1 W/Notification: Use of stream types is deprecatedGet notification channel (or notification settings) for other app
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I understand that some answers like this one seem to have covered this, but I believe I'm following the procedure exactly and still get the warning. In my app, I want one channel for the foreground notification that's always there and another for push notifications to go through separately. Here's my code:
private void startNotifications()
if (Build.VERSION.SDK_INT >= 26)
NotificationChannel channel = new NotificationChannel(getResources().getString(R.string.ForegroundID),
getResources().getString(R.string.foreground_channel_name), NotificationManager.IMPORTANCE_LOW);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
channel.setDescription(getResources().getString(R.string.foreground_channel_description));
channel.setShowBadge(false);
channel.setSound(defaultSound, null);
//TODO Another nonsense warning over here, is there a way to fix it?
notificationManager.createNotificationChannel(channel);
NotificationChannel channel2 = new NotificationChannel(getResources().getString(R.string.PushID),
getResources().getString(R.string.push_channel_name), NotificationManager.IMPORTANCE_HIGH);
channel.setDescription(getResources().getString(R.string.push_channel_description));
channel.setShowBadge(false);
channel.setSound(defaultSound, null);
notificationManager.createNotificationChannel(channel2);
Notification foregroundNotification = createNotification();
//Must be called within 5 seconds of Service being started or else Android will crash the app
startForeground(ONGOING_NOTIFICATION_ID, foregroundNotification);
It calls
private Notification createNotification()
String[] initialData = getNotificationInfo();
Intent notificationIntent = new Intent(this, MainActivity.class);
PendingIntent activityPendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
Intent closeService = new Intent(this, MainActivity.class);
closeService.setAction(getResources().getString(R.string.IntentAction_CloseService));
closeService.putExtra(getResources().getString(R.string.IntentExtra_CloseService), getResources().getString(R.string.Intent_CloseFromNotification));
PendingIntent closePendingIntent = PendingIntent.getActivity(this, 0, closeService, 0);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, getResources().getString(R.string.ForegroundID))
.setSmallIcon(R.drawable.pic_small)
.setContentTitle(initialData[0])
.setContentText(initialData[1])
.setContentIntent(activityPendingIntent)
.setShowWhen(false)
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
.setCategory(NotificationCompat.CATEGORY_SERVICE)
.setColor(getResources().getColor(R.color.picGray))
.setSound(defaultSound)
.addAction(R.drawable.pic_small, getResources().getString(R.string.end_service_text), closePendingIntent);
return builder.build();
And throughout the lifescycle of the app, I update the foreground notification with:
private void updateForegroundNotification ()
Log.i("BLE_Service", "Updating Foreground Notification!");
Notification updatedNotification = createNotification();
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(ONGOING_NOTIFICATION_ID, updatedNotification);
But whenever the foreground notification updates, I get the warning about stream types being deprecated and setSound() and all that. What's going on?
java android notifications android-notifications
add a comment |
I understand that some answers like this one seem to have covered this, but I believe I'm following the procedure exactly and still get the warning. In my app, I want one channel for the foreground notification that's always there and another for push notifications to go through separately. Here's my code:
private void startNotifications()
if (Build.VERSION.SDK_INT >= 26)
NotificationChannel channel = new NotificationChannel(getResources().getString(R.string.ForegroundID),
getResources().getString(R.string.foreground_channel_name), NotificationManager.IMPORTANCE_LOW);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
channel.setDescription(getResources().getString(R.string.foreground_channel_description));
channel.setShowBadge(false);
channel.setSound(defaultSound, null);
//TODO Another nonsense warning over here, is there a way to fix it?
notificationManager.createNotificationChannel(channel);
NotificationChannel channel2 = new NotificationChannel(getResources().getString(R.string.PushID),
getResources().getString(R.string.push_channel_name), NotificationManager.IMPORTANCE_HIGH);
channel.setDescription(getResources().getString(R.string.push_channel_description));
channel.setShowBadge(false);
channel.setSound(defaultSound, null);
notificationManager.createNotificationChannel(channel2);
Notification foregroundNotification = createNotification();
//Must be called within 5 seconds of Service being started or else Android will crash the app
startForeground(ONGOING_NOTIFICATION_ID, foregroundNotification);
It calls
private Notification createNotification()
String[] initialData = getNotificationInfo();
Intent notificationIntent = new Intent(this, MainActivity.class);
PendingIntent activityPendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
Intent closeService = new Intent(this, MainActivity.class);
closeService.setAction(getResources().getString(R.string.IntentAction_CloseService));
closeService.putExtra(getResources().getString(R.string.IntentExtra_CloseService), getResources().getString(R.string.Intent_CloseFromNotification));
PendingIntent closePendingIntent = PendingIntent.getActivity(this, 0, closeService, 0);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, getResources().getString(R.string.ForegroundID))
.setSmallIcon(R.drawable.pic_small)
.setContentTitle(initialData[0])
.setContentText(initialData[1])
.setContentIntent(activityPendingIntent)
.setShowWhen(false)
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
.setCategory(NotificationCompat.CATEGORY_SERVICE)
.setColor(getResources().getColor(R.color.picGray))
.setSound(defaultSound)
.addAction(R.drawable.pic_small, getResources().getString(R.string.end_service_text), closePendingIntent);
return builder.build();
And throughout the lifescycle of the app, I update the foreground notification with:
private void updateForegroundNotification ()
Log.i("BLE_Service", "Updating Foreground Notification!");
Notification updatedNotification = createNotification();
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(ONGOING_NOTIFICATION_ID, updatedNotification);
But whenever the foreground notification updates, I get the warning about stream types being deprecated and setSound() and all that. What's going on?
java android notifications android-notifications
add a comment |
I understand that some answers like this one seem to have covered this, but I believe I'm following the procedure exactly and still get the warning. In my app, I want one channel for the foreground notification that's always there and another for push notifications to go through separately. Here's my code:
private void startNotifications()
if (Build.VERSION.SDK_INT >= 26)
NotificationChannel channel = new NotificationChannel(getResources().getString(R.string.ForegroundID),
getResources().getString(R.string.foreground_channel_name), NotificationManager.IMPORTANCE_LOW);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
channel.setDescription(getResources().getString(R.string.foreground_channel_description));
channel.setShowBadge(false);
channel.setSound(defaultSound, null);
//TODO Another nonsense warning over here, is there a way to fix it?
notificationManager.createNotificationChannel(channel);
NotificationChannel channel2 = new NotificationChannel(getResources().getString(R.string.PushID),
getResources().getString(R.string.push_channel_name), NotificationManager.IMPORTANCE_HIGH);
channel.setDescription(getResources().getString(R.string.push_channel_description));
channel.setShowBadge(false);
channel.setSound(defaultSound, null);
notificationManager.createNotificationChannel(channel2);
Notification foregroundNotification = createNotification();
//Must be called within 5 seconds of Service being started or else Android will crash the app
startForeground(ONGOING_NOTIFICATION_ID, foregroundNotification);
It calls
private Notification createNotification()
String[] initialData = getNotificationInfo();
Intent notificationIntent = new Intent(this, MainActivity.class);
PendingIntent activityPendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
Intent closeService = new Intent(this, MainActivity.class);
closeService.setAction(getResources().getString(R.string.IntentAction_CloseService));
closeService.putExtra(getResources().getString(R.string.IntentExtra_CloseService), getResources().getString(R.string.Intent_CloseFromNotification));
PendingIntent closePendingIntent = PendingIntent.getActivity(this, 0, closeService, 0);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, getResources().getString(R.string.ForegroundID))
.setSmallIcon(R.drawable.pic_small)
.setContentTitle(initialData[0])
.setContentText(initialData[1])
.setContentIntent(activityPendingIntent)
.setShowWhen(false)
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
.setCategory(NotificationCompat.CATEGORY_SERVICE)
.setColor(getResources().getColor(R.color.picGray))
.setSound(defaultSound)
.addAction(R.drawable.pic_small, getResources().getString(R.string.end_service_text), closePendingIntent);
return builder.build();
And throughout the lifescycle of the app, I update the foreground notification with:
private void updateForegroundNotification ()
Log.i("BLE_Service", "Updating Foreground Notification!");
Notification updatedNotification = createNotification();
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(ONGOING_NOTIFICATION_ID, updatedNotification);
But whenever the foreground notification updates, I get the warning about stream types being deprecated and setSound() and all that. What's going on?
java android notifications android-notifications
I understand that some answers like this one seem to have covered this, but I believe I'm following the procedure exactly and still get the warning. In my app, I want one channel for the foreground notification that's always there and another for push notifications to go through separately. Here's my code:
private void startNotifications()
if (Build.VERSION.SDK_INT >= 26)
NotificationChannel channel = new NotificationChannel(getResources().getString(R.string.ForegroundID),
getResources().getString(R.string.foreground_channel_name), NotificationManager.IMPORTANCE_LOW);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
channel.setDescription(getResources().getString(R.string.foreground_channel_description));
channel.setShowBadge(false);
channel.setSound(defaultSound, null);
//TODO Another nonsense warning over here, is there a way to fix it?
notificationManager.createNotificationChannel(channel);
NotificationChannel channel2 = new NotificationChannel(getResources().getString(R.string.PushID),
getResources().getString(R.string.push_channel_name), NotificationManager.IMPORTANCE_HIGH);
channel.setDescription(getResources().getString(R.string.push_channel_description));
channel.setShowBadge(false);
channel.setSound(defaultSound, null);
notificationManager.createNotificationChannel(channel2);
Notification foregroundNotification = createNotification();
//Must be called within 5 seconds of Service being started or else Android will crash the app
startForeground(ONGOING_NOTIFICATION_ID, foregroundNotification);
It calls
private Notification createNotification()
String[] initialData = getNotificationInfo();
Intent notificationIntent = new Intent(this, MainActivity.class);
PendingIntent activityPendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
Intent closeService = new Intent(this, MainActivity.class);
closeService.setAction(getResources().getString(R.string.IntentAction_CloseService));
closeService.putExtra(getResources().getString(R.string.IntentExtra_CloseService), getResources().getString(R.string.Intent_CloseFromNotification));
PendingIntent closePendingIntent = PendingIntent.getActivity(this, 0, closeService, 0);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, getResources().getString(R.string.ForegroundID))
.setSmallIcon(R.drawable.pic_small)
.setContentTitle(initialData[0])
.setContentText(initialData[1])
.setContentIntent(activityPendingIntent)
.setShowWhen(false)
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
.setCategory(NotificationCompat.CATEGORY_SERVICE)
.setColor(getResources().getColor(R.color.picGray))
.setSound(defaultSound)
.addAction(R.drawable.pic_small, getResources().getString(R.string.end_service_text), closePendingIntent);
return builder.build();
And throughout the lifescycle of the app, I update the foreground notification with:
private void updateForegroundNotification ()
Log.i("BLE_Service", "Updating Foreground Notification!");
Notification updatedNotification = createNotification();
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(ONGOING_NOTIFICATION_ID, updatedNotification);
But whenever the foreground notification updates, I get the warning about stream types being deprecated and setSound() and all that. What's going on?
java android notifications android-notifications
java android notifications android-notifications
edited Mar 9 at 8:49
Zoe
13.3k85386
13.3k85386
asked Mar 9 at 3:30
EricEric
289
289
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073715%2fandroid-notification-use-of-stream-types-is-deprecated-for-operations-other-t%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073715%2fandroid-notification-use-of-stream-types-is-deprecated-for-operations-other-t%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown