Android 画中画肖像模式
Posted
技术标签:
【中文标题】Android 画中画肖像模式【英文标题】:Android Picture in Picture Potrait Mode 【发布时间】:2021-02-09 03:54:07 【问题描述】:我正在尝试实现画中画模式,但就示例而言,我看到的唯一方向是横向模式。
https://developer.android.com/guide/topics/ui/picture-in-picture
我正在尝试拥有一个功能类似于 WhatsApp 应用程序。当用户接听电话并进入画中画模式时,窗口以纵向模式显示,因此用户可以清楚地看到其他人。将不胜感激我如何实现这一点。
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.
【问题讨论】:
【参考方案1】:您可以使用enterPictureInPictureMode 来配置PIP 窗口。
要使用纵向 PIP 窗口,请使用 ~2/3 的纵横比。 (纵横比必须在 0,42 和 2,39 之间。)
override fun onUserLeaveHint()
enterPictureInPictureMode(PictureInPictureParams.Builder()
.setAspectRatio(Rational(2, 3))
.build())
例子:
【讨论】:
以上是关于Android 画中画肖像模式的主要内容,如果未能解决你的问题,请参考以下文章