How to change background image of notificationbar button,i want to play /pause on one button but i can't change background image.
public static void setListeners(RemoteViews view, Context context) {
// Intent pause = new Intent(NOTIFY_PAUSE);
Intent play = new Intent(context, NotificationBroadcast.class);
PendingIntent pPlay = PendingIntent.getBroadcast(context, 0, play,
PendingIntent.FLAG_UPDATE_CURRENT);
view.setImageViewResource(R.id.buttonplay, R.drawable.play_button);
view.setOnClickPendingIntent(R.id.buttonplay, pPlay);
}