display player view correctly after dismissing PIP view
This commit is contained in:
parent
08c38c1723
commit
d6baf3d1c8
2 changed files with 4 additions and 0 deletions
|
@ -3095,6 +3095,9 @@ public class MainActivity extends AppCompatActivity implements SdkStatusListener
|
|||
if (appPlayer != null && inPictureInPictureMode && !isBackgroundPlaybackEnabled()) {
|
||||
appPlayer.setPlayWhenReady(false);
|
||||
}
|
||||
if (inPictureInPictureMode) {
|
||||
MainActivity.playerReassigned = true;
|
||||
}
|
||||
super.onStop();
|
||||
}
|
||||
|
||||
|
|
|
@ -772,6 +772,7 @@ public class FileViewFragment extends BaseFragment implements
|
|||
View root = getView();
|
||||
if (root != null) {
|
||||
PlayerView view = root.findViewById(R.id.file_view_exoplayer_view);
|
||||
view.setVisibility(View.VISIBLE);
|
||||
view.setPlayer(null);
|
||||
view.setPlayer(MainActivity.appPlayer);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue