summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2013-04-11 10:56:58 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2013-04-11 10:56:58 +0200
commit565ff195108919db0541fc97277eace3abe59135 (patch)
tree651635776ca0d6f8895ba8031288e72ef5126590 /src/de/danoeh/antennapod
parent7e4827e2537e54b3b337093546d894beccbb5545 (diff)
parent09e37010c31dbf739a0937fa522c842628548c63 (diff)
downloadAntennaPod-565ff195108919db0541fc97277eace3abe59135.zip
Merge branch 'master' of git://github.com/wseemann/AntennaPod into wseemann-master
Diffstat (limited to 'src/de/danoeh/antennapod')
-rw-r--r--src/de/danoeh/antennapod/service/PlaybackService.java23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/de/danoeh/antennapod/service/PlaybackService.java b/src/de/danoeh/antennapod/service/PlaybackService.java
index 441a57baa..11da79015 100644
--- a/src/de/danoeh/antennapod/service/PlaybackService.java
+++ b/src/de/danoeh/antennapod/service/PlaybackService.java
@@ -73,7 +73,8 @@ public class PlaybackService extends Service {
public static final String EXTRA_PREPARE_IMMEDIATELY = "extra.de.danoeh.antennapod.service.prepareImmediately";
public static final String ACTION_PLAYER_STATUS_CHANGED = "action.de.danoeh.antennapod.service.playerStatusChanged";
-
+ private static final String AVRCP_ACTION_PLAYER_STATUS_CHANGED= "com.android.music.playstatechanged";
+
public static final String ACTION_PLAYER_NOTIFICATION = "action.de.danoeh.antennapod.service.playerNotification";
public static final String EXTRA_NOTIFICATION_CODE = "extra.de.danoeh.antennapod.service.notificationCode";
public static final String EXTRA_NOTIFICATION_TYPE = "extra.de.danoeh.antennapod.service.notificationType";
@@ -962,6 +963,7 @@ public class PlaybackService extends Service {
sendBroadcast(new Intent(ACTION_PLAYER_STATUS_CHANGED));
updateWidget();
refreshRemoteControlClientState();
+ bluetoothNotifyChange();
}
/** Send ACTION_PLAYER_STATUS_CHANGED without changing the status attribute. */
@@ -1222,6 +1224,25 @@ public class PlaybackService extends Service {
}
}
+ private void bluetoothNotifyChange() {
+ boolean isPlaying = false;
+
+ if (status == PlayerStatus.PLAYING) {
+ isPlaying = true;
+ }
+
+ Intent i = new Intent(AVRCP_ACTION_PLAYER_STATUS_CHANGED);
+ i.putExtra("id", 1);
+ i.putExtra("artist", "");
+ i.putExtra("album", media.getFeedTitle());
+ i.putExtra("track", media.getEpisodeTitle());
+ i.putExtra("playing", isPlaying);
+ i.putExtra("ListSize", manager.getQueueSize(false));
+ i.putExtra("duration", media.getDuration());
+ i.putExtra("position", media.getPosition());
+ sendBroadcast(i);
+ }
+
/**
* Pauses playback when the headset is disconnected and the preference is
* set