summaryrefslogtreecommitdiff
path: root/core/src/main/java
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2019-08-30 10:42:23 +0200
committerByteHamster <info@bytehamster.com>2019-08-30 13:07:58 +0200
commit5521a7a4e1f81c09250c8333176290d52b491138 (patch)
treef35c4a8330a22e33dbd89893a75e254636fa3862 /core/src/main/java
parent4678297ec3bb13238abaadf5737f0288d1f62c23 (diff)
downloadAntennaPod-5521a7a4e1f81c09250c8333176290d52b491138.zip
Updated streaming confirmation icon
Diffstat (limited to 'core/src/main/java')
-rw-r--r--core/src/main/java/de/danoeh/antennapod/core/service/playback/PlaybackService.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/main/java/de/danoeh/antennapod/core/service/playback/PlaybackService.java b/core/src/main/java/de/danoeh/antennapod/core/service/playback/PlaybackService.java
index 4ba33919a..f7a13d81e 100644
--- a/core/src/main/java/de/danoeh/antennapod/core/service/playback/PlaybackService.java
+++ b/core/src/main/java/de/danoeh/antennapod/core/service/playback/PlaybackService.java
@@ -529,17 +529,17 @@ public class PlaybackService extends MediaBrowserServiceCompat {
}
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, NotificationUtils.CHANNEL_ID_USER_ACTION)
- .setSmallIcon(R.drawable.stat_notify_sync_error)
+ .setSmallIcon(R.drawable.ic_stream_white)
.setContentTitle(getString(R.string.confirm_mobile_streaming_notification_title))
.setContentText(getString(R.string.confirm_mobile_streaming_notification_message))
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(getString(R.string.confirm_mobile_streaming_notification_message)))
.setPriority(NotificationCompat.PRIORITY_DEFAULT)
.setContentIntent(pendingIntentAllowThisTime)
- .addAction(R.drawable.stat_notify_sync_error,
+ .addAction(R.drawable.ic_stream_white,
getString(R.string.stream_label),
pendingIntentAllowThisTime)
- .addAction(R.drawable.stat_notify_sync_error,
+ .addAction(R.drawable.ic_stream_white,
getString(R.string.confirm_mobile_streaming_button_always),
pendingIntentAlwaysAllow)
.setAutoCancel(true);