Perform Action On Button Click in Custom Notification : Android
问题 I am trying to perform some action like pause music , play music on button click of a custom notification in android. Currently I am doing it in this way , int icon = R.drawable.ic_launcher; long when = System.currentTimeMillis(); Notification notification = new Notification(icon, "Custom Notification", when); NotificationManager mNotificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE); RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.layout);