gpt4 book ai didi

android - Android画中画肖像模式

转载 作者:行者123 更新时间:2023-12-02 13:39:56 25 4
gpt4 key购买 nike

我正在尝试以“图片模式”实现图片,但就给出的唯一示例而言,我看到的是横向模式。
https://developer.android.com/guide/topics/ui/picture-in-picture
我正在尝试在功能上类似于WhatsApp应用程序。当用户接受 call 并以图片模式输入图片时,窗口以纵向模式显示,因此用户可以很好地看到其他人。将赞赏我如何实现此想法。

override fun onPictureInPictureModeChanged(isInPictureInPictureMode: Boolean,
newConfig: Configuration) {
if (isInPictureInPictureMode) {
// Hide the full-screen UI (controls, etc.) while in picture-in-picture mode.
} else {
// Restore the full-screen UI.
}
}

最佳答案

您可以使用enterPictureInPictureMode配置PIP窗口。
要拥有人像画中画窗口,请使用约2/3的长宽比。 (长宽比必须在0.42和2.39之间。)

override fun onUserLeaveHint() {
enterPictureInPictureMode(PictureInPictureParams.Builder()
.setAspectRatio(Rational(2, 3))
.build())
}
例:

关于android - Android画中画肖像模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64544792/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com