summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/de/danoeh/antennapod/service/download/DownloadService.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/de/danoeh/antennapod/service/download/DownloadService.java b/src/de/danoeh/antennapod/service/download/DownloadService.java
index 02dcb8af5..96a0621ff 100644
--- a/src/de/danoeh/antennapod/service/download/DownloadService.java
+++ b/src/de/danoeh/antennapod/service/download/DownloadService.java
@@ -199,8 +199,8 @@ public class DownloadService extends Service {
this, DownloadActivity.class),
PendingIntent.FLAG_UPDATE_CURRENT);
- Bitmap icon = BitmapFactory.decodeResource(null,
- android.R.drawable.stat_notify_sync_noanim);
+ Bitmap icon = BitmapFactory.decodeResource(getResources(),
+ R.drawable.stat_notify_sync);
notificationBuilder = new NotificationCompat.Builder(this)
.setContentTitle(
getString(R.string.download_notification_title))
@@ -208,7 +208,7 @@ public class DownloadService extends Service {
requester.getNumberOfDownloads()
+ getString(R.string.downloads_left))
.setOngoing(true).setContentIntent(pIntent).setLargeIcon(icon)
- .setSmallIcon(android.R.drawable.stat_notify_sync_noanim);
+ .setSmallIcon(R.drawable.stat_notify_sync);
startForeground(NOTIFICATION_ID, notificationBuilder.getNotification());
if (AppConfig.DEBUG)
@@ -445,10 +445,10 @@ public class DownloadService extends Service {
String.format(
getString(R.string.download_report_content),
successfulDownloads, failedDownloads))
- .setSmallIcon(android.R.drawable.stat_notify_sync)
+ .setSmallIcon(R.drawable.stat_notify_sync)
.setLargeIcon(
- BitmapFactory.decodeResource(null,
- android.R.drawable.stat_notify_sync))
+ BitmapFactory.decodeResource(getResources(),
+ R.drawable.stat_notify_sync))
.setContentIntent(
PendingIntent.getActivity(this, 0, new Intent(this,
DownloadLogActivity.class), 0))