Не могу понять это. У меня есть кнопка в моей Активности, которая после нажатия открывает уведомление. Это пользовательское уведомление имеет кнопку на нем. Я пытаюсь изменить фоновое изображение уведомлений после его нажатия.
Вот то, что я использовал до сих пор без удачи.
Это класс обслуживания, который вызывается однажды "notifcation_Button". "давит. (У меня есть ожидающее намерение вызвать этот класс)
public class newService extends Service {
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d("newService", "Newservice");
RemoteViews remoteView = new RemoteViews(getPackageName(), R.layout.custom_layout); //this is my custom notification
remoteView.setInt(R.id.StartButton_Notification, "setBackgroundColor", R.drawable.sungrey);
remoteView.setInt(R.id.StartButton_Notification, "setBackgroundResource", sungrey);
remoteView.setImageViewResource(R.id.StartButton_Notification, R.drawable.sungrey);
return START_NOT_STICKY;
}