remove active song from media session in android
up vote
1
down vote
favorite
I have an app that is using the Android MediaSession and MediaBrowserConnection to play songs and have a playlist. I am a bit stuck on how to remove the current playing song when someone wants to clear the entire playlist. I can easily remove all of the remaining songs from the queue like so...
for(MediaSessionCompat.QueueItem item : mediaControllercompat.getQueue()) {
mediaControllerCompat.removeQueueItem(item.getDescription());
}
Where mediaControllercompat is a MediaControllerCompat object.
But I can't find an easy way to remove the song that is actively playing. The above just removes any songs that are in the queue, and not the active song.
I think I can kind of fake it by just forcing the "skip" feature and since the playlist is empty it would stop playing, but I was wondering if that is the correct way to do that, or if there was a better way to handle it.
I would be more than happy to show any relevant code if needed. I am just not sure what code is needed exactly, since there are a good 9 or so classes not including the classes inside classes for callbacks and whatnot. Please let me know if I need to show anything else. Thank you.
android mediacontroller android-mediasession
add a comment |
up vote
1
down vote
favorite
I have an app that is using the Android MediaSession and MediaBrowserConnection to play songs and have a playlist. I am a bit stuck on how to remove the current playing song when someone wants to clear the entire playlist. I can easily remove all of the remaining songs from the queue like so...
for(MediaSessionCompat.QueueItem item : mediaControllercompat.getQueue()) {
mediaControllerCompat.removeQueueItem(item.getDescription());
}
Where mediaControllercompat is a MediaControllerCompat object.
But I can't find an easy way to remove the song that is actively playing. The above just removes any songs that are in the queue, and not the active song.
I think I can kind of fake it by just forcing the "skip" feature and since the playlist is empty it would stop playing, but I was wondering if that is the correct way to do that, or if there was a better way to handle it.
I would be more than happy to show any relevant code if needed. I am just not sure what code is needed exactly, since there are a good 9 or so classes not including the classes inside classes for callbacks and whatnot. Please let me know if I need to show anything else. Thank you.
android mediacontroller android-mediasession
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have an app that is using the Android MediaSession and MediaBrowserConnection to play songs and have a playlist. I am a bit stuck on how to remove the current playing song when someone wants to clear the entire playlist. I can easily remove all of the remaining songs from the queue like so...
for(MediaSessionCompat.QueueItem item : mediaControllercompat.getQueue()) {
mediaControllerCompat.removeQueueItem(item.getDescription());
}
Where mediaControllercompat is a MediaControllerCompat object.
But I can't find an easy way to remove the song that is actively playing. The above just removes any songs that are in the queue, and not the active song.
I think I can kind of fake it by just forcing the "skip" feature and since the playlist is empty it would stop playing, but I was wondering if that is the correct way to do that, or if there was a better way to handle it.
I would be more than happy to show any relevant code if needed. I am just not sure what code is needed exactly, since there are a good 9 or so classes not including the classes inside classes for callbacks and whatnot. Please let me know if I need to show anything else. Thank you.
android mediacontroller android-mediasession
I have an app that is using the Android MediaSession and MediaBrowserConnection to play songs and have a playlist. I am a bit stuck on how to remove the current playing song when someone wants to clear the entire playlist. I can easily remove all of the remaining songs from the queue like so...
for(MediaSessionCompat.QueueItem item : mediaControllercompat.getQueue()) {
mediaControllerCompat.removeQueueItem(item.getDescription());
}
Where mediaControllercompat is a MediaControllerCompat object.
But I can't find an easy way to remove the song that is actively playing. The above just removes any songs that are in the queue, and not the active song.
I think I can kind of fake it by just forcing the "skip" feature and since the playlist is empty it would stop playing, but I was wondering if that is the correct way to do that, or if there was a better way to handle it.
I would be more than happy to show any relevant code if needed. I am just not sure what code is needed exactly, since there are a good 9 or so classes not including the classes inside classes for callbacks and whatnot. Please let me know if I need to show anything else. Thank you.
android mediacontroller android-mediasession
android mediacontroller android-mediasession
asked Nov 20 at 1:28
Neglected Sanity
459421
459421
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384965%2fremove-active-song-from-media-session-in-android%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown