What im looking to do is have an activity that streams music resume from Drawer rather than refresh as that results in the same music playing twice.
// Create an Intent for the activity you want to start
Intent resultIntent = new Intent(this, SoundCloudActivity.class);
// Create the TaskStackBuilder and add the intent, which inflates the back stack
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
stackBuilder.addNextIntentWithParentStack(resultIntent);
// Get the PendingIntent containing the entire back stack
PendingIntent resultPendingIntent =
stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(SoundCloudActivity.this, CHANNEL_ID)
.setSmallIcon(R.drawable.video_icon_48)
.setContentTitle("Music")
.setContentText("Streaming....")
.setColor(Color.parseColor("#009add"))
.setAutoCancel(true)
.setContentIntent(resultPendingIntent);