-Fixed minimizing to popup player does not destroying existing player when drawing over app permission is not granted.
This commit is contained in:
parent
2d39e65b5c
commit
4fbd1182c2
|
@ -219,11 +219,10 @@ public final class MainVideoPlayer extends AppCompatActivity
|
|||
getWindow().getAttributes().screenBrightness);
|
||||
|
||||
if (playerImpl == null) return;
|
||||
if (isBackPressed) {
|
||||
playerImpl.destroy();
|
||||
} else {
|
||||
if (!isBackPressed) {
|
||||
playerImpl.minimize();
|
||||
}
|
||||
playerImpl.destroy();
|
||||
|
||||
isInMultiWindow = false;
|
||||
isBackPressed = false;
|
||||
|
@ -465,7 +464,8 @@ public final class MainVideoPlayer extends AppCompatActivity
|
|||
onFullScreenButtonClicked();
|
||||
break;
|
||||
case PlayerHelper.MinimizeMode.MINIMIZE_ON_EXIT_MODE_NONE:
|
||||
destroy();
|
||||
default:
|
||||
// No action
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue