当我启动任何其他应用时,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。之后,我得到下面的错误日志。
1条答案
按热度按时间q8l4jmvw1#
我遇到了同样的问题。为了解决这个问题,请尝试转到应用程序的属性,并确保您启用了
display on other apps
。这对我很有效。