有没有办法避免在图片窗口中更改为图片时的活动娱乐?
基本上我这样称呼:
@Override
protected void onUserLeaveHint() {
if (Build.VERSION.SDK_INT > 24 && isInFullscreen) {
MainActivity.this.enterPictureInPictureMode();
}
super.onUserLeaveHint();
}
活动总是重新加载,从而导致更长的等待时间。
从文档中 - 将其添加到清单中的活动中:
android:resizeableActivity="true"
android:supportsPictureInPicture="true"
android:configChanges=
"screenSize|smallestScreenSize|screenLayout|orientation"
请参阅https://developer.android.com/guide/topics/ui/picture-in-picture.html有关更多详细信息