问题标签 [picture-in-picture]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
objective-c - Objective-C:如何使用 AVPictureInPictureController
我正在尝试为我的 iPad 应用程序设置画中画,并且我有一个自定义视频播放器,因此我遵循以下示例代码:https ://developer.apple.com/library/ios/samplecode/AVFoundationPiPPlayer/Introduction/Intro .html
我在 Objective-C 中实现这一点,下面的第二行代码给出了错误“在 AVPictureInPictureController 类型的对象上找不到属性 isPictureInPictureSupported。
ios - 访问 WKWebView 的 AVPictureInPictureController 的委托回调
我需要能够访问pictureInPictureControllerDidStopPictureInPicture(_:)
本地AVPictureInPictureController
的委托回调方法WKWebView
。AVPictureInPictureController
没有像旧的MPMoviePlayerViewController
那样的全局通知事件,我无法创建自己的实例AVPictureInPictureController
来与 Web 视图一起使用来访问委托回调。我找不到关于如何挂钩到对象内部AVPictureInPictureController
的文档WKWebView
。我希望至少有一些方法可以用 KVO 做到这一点。
WebKit 框架提供了 WKWebView 类,在 iOS 9 中支持画中画。
android - 在Android的画中画模式下检测关闭和最大化点击事件
如何检测用户是否单击了 PIP 小窗口中的本机关闭和最大化按钮。有没有我可以听的听众。现在我的接收器只听我在布局中定义的控件,但是像 [] max 按钮和 X 关闭按钮这样的非自定义按钮是 PIP 的一部分。请参阅链接 链接
android - Cannot Resolve PictureInPictureParams
Trying to set up some enhanced PIP functionality. Getting stuck on declaring this variable:
I have an import at the top of the class:
but this has a compile error:
Cannot Resolve PictureInPictureParams
In my build.gradle file, I have these two lines:
Anyone know how I can resolve this dependency? Thank you.
android - 如何在 Android TV 主屏幕上为当前正在运行的任务设置图标和标题
我已根据本指南为 Android TV 应用启用画中画模式:https ://developer.android.com/guide/topics/ui/picture-in-picture.html
当我进入 PiP 模式并导航到 Android 主屏幕的主屏幕时,它会在顶部显示当前正在运行的任务(PiP 窗口),并带有图标、标题和打开和关闭选项。
我找不到任何关于如何设置标题和图标(但最重要的是标题)的文档。我尝试设置ActivityManager.TaskDescription但没有任何运气。另请注意,我确实在 Manifest 中设置了应用程序标题,但此处未显示。另请注意,在任务切换器中,应用程序标题和图标显示正确。
任何想法如何(No title program)
从屏幕截图中设置?
在 Android TV API 26、27 上测试,因为画中画仅在 Oreo 之后可用。
android - PiP 进入时避免活动娱乐
切换到画中画窗口时,有没有办法避免活动娱乐?
基本上我这样称呼它:
活动总是重新加载,这会导致更长的等待时间。
android - 无法在清单的活动中插入布局标签
你知道为什么我不能layout
在清单中添加标签activity
吗?我正在尝试在我的应用程序中添加 PIP 功能并希望按照此处所述配置清单,但是当我尝试添加layout
标签时,它不建议这样做(只有标签可以添加到)intent-filter
并且它警告我“此处不允许元素布局”。meta-data
activity
我正在使用 Android Studio 3,buildToolsVersion 26.0.2,compileSdkVersion 25,targetSdkVersion 25(minSdkVersion 为 9,但应该不是问题)。