• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps pause/play button on notification

hey guys
i want to write a code in which notification having one button (pause) and when user press it pause the media play..
here is my notification code
please suggest me solution or any sample code for this


int icon = R.drawable.vmix;
CharSequence tickerText = "Vmix";
long when = System.currentTimeMillis();

Notification notification = new Notification(icon, tickerText, when);

notification.flags |= Notification.FLAG_ONGOING_EVENT;


String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);

RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.noti);
contentView.setImageViewResource(R.id.image, R.drawable.vmix);


notification.contentView = contentView;

Intent notificationIntent = new Intent(this, MainActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);

notification.contentIntent = contentIntent;
final int CUSTOM_VIEW_ID = 1;
mNotificationManager.notify(CUSTOM_VIEW_ID, notification);
 
Back
Top Bottom