Merge pull request #1004 from lbryio/player-resume-black-screen

display player view correctly after dismissing PIP view
This commit is contained in:
Akinwale Ariwodola 2020-09-04 12:33:53 +01:00 committed by GitHub
commit 45be7f2c9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -3095,6 +3095,9 @@ public class MainActivity extends AppCompatActivity implements SdkStatusListener
if (appPlayer != null && inPictureInPictureMode && !isBackgroundPlaybackEnabled()) { if (appPlayer != null && inPictureInPictureMode && !isBackgroundPlaybackEnabled()) {
appPlayer.setPlayWhenReady(false); appPlayer.setPlayWhenReady(false);
} }
if (inPictureInPictureMode) {
MainActivity.playerReassigned = true;
}
super.onStop(); super.onStop();
} }

View file

@ -772,6 +772,7 @@ public class FileViewFragment extends BaseFragment implements
View root = getView(); View root = getView();
if (root != null) { if (root != null) {
PlayerView view = root.findViewById(R.id.file_view_exoplayer_view); PlayerView view = root.findViewById(R.id.file_view_exoplayer_view);
view.setVisibility(View.VISIBLE);
view.setPlayer(null); view.setPlayer(null);
view.setPlayer(MainActivity.appPlayer); view.setPlayer(MainActivity.appPlayer);
} }