1

切换到画中画窗口时,有没有办法避免活动娱乐?

基本上我这样称呼它:

@Override
protected void onUserLeaveHint() {
    if (Build.VERSION.SDK_INT > 24 && isInFullscreen) {
        MainActivity.this.enterPictureInPictureMode();
    }
    super.onUserLeaveHint();
}

活动总是重新加载,这会导致更长的等待时间。

4

1 回答 1

3

从文档中-将此添加到清单中的活动中:

android:resizeableActivity="true"
android:supportsPictureInPicture="true"
android:configChanges=
    "screenSize|smallestScreenSize|screenLayout|orientation"

有关更多详细信息,请参见https://developer.android.com/guide/topics/ui/picture-in-picture.html

于 2018-02-09T16:11:43.677 回答