我们正在使用带有画中画(pip)功能的通话页面。
问题:
如果用户关闭 pip 弹出窗口(通过向下拖动关闭),我们无法检测到。
如何检测图片窗口中的图片向下拖动以关闭?
更新:
设置画中画
// RemoteRenderLayout -> call preview layout. You can set anyone view
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
Rational aspectRatio = new Rational(
remoteRenderLayout.getWidth(), remoteRenderLayout.getHeight());
PictureInPictureParams params = new PictureInPictureParams.Builder()
.setAspectRatio(aspectRatio)
.build();
enterPictureInPictureMode(params);
}
else{
enterPictureInPictureMode();
}