React Native 当我启动任何其他应用程序时,Android画中画窗口会自动关闭

h79rfbju  于 2023-03-09  发布在  React
关注(0)|答案(1)|浏览(191)

当我启动任何其他应用时,Android画中画窗口会关闭。仅在首次启动应用时会发生这种情况,但如果已打开其他应用,则不会发生这种情况。在Android 10中运行良好。
AndroidManifest.xml

<activity
        android:name="xxxx"
        android:label="@string/xxxx"
        android:exported="false"
        android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode|smallestScreenSize|screenLayout"
        android:screenOrientation="portrait"
        android:supportsPictureInPicture="true"
        android:theme="@style/Theme_NewApp"
        android:resizeableActivity="false"
        android:launchMode="singleTask"
        >

画中画参数

return PictureInPictureParams.Builder()
            .setAspectRatio(Rational(144, 224))
            .build();

错误日志
首先,调用onStop,然后关闭PIP。之后,我得到下面的错误日志。

q8l4jmvw

q8l4jmvw1#

我遇到了同样的问题。为了解决这个问题,请尝试转到应用程序的属性,并确保您启用了display on other apps。这对我很有效。

相关问题