Send play intent if service state is unknown

This commit is contained in:
ByteHamster 2020-06-11 23:17:06 +02:00
parent f48c75aa83
commit 58f931b575
2 changed files with 7 additions and 1 deletions

View File

@ -77,7 +77,6 @@ public class ExternalPlayerFragment extends Fragment {
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
controller = setupPlaybackController();
butPlay.setOnClickListener(v -> {
if (controller != null) {
controller.playPause();

View File

@ -508,6 +508,13 @@ public class PlaybackController {
playbackService.setStartWhenPrepared(true);
playbackService.prepare();
break;
default:
new PlaybackServiceStarter(activity, media)
.startWhenPrepared(true)
.streamIfLastWasStream()
.start();
Log.w(TAG, "Play/Pause button was pressed and PlaybackService state was unknown");
break;
}
}