Android - Flash - 允许对等辅助网络的权限
我正在开发一个实现 Flash Peer 辅助网络的 Android 应用程序。
我有普通的 Android 控件和一个包含 HTML 和嵌入式 Flash 播放器的 WebView。
有时,Flash 播放器会请求许可(此后一切正常),有时它不会请求,而是挂起。有没有办法强制 Flash 播放器请求权限?或者我可以将我的应用程序添加到 Flash 播放器每次接受的列表中?
例如,这是一个框我需要定期出现。
I am working on an Android App that implements Flash Peer-assisted networking.
I have normal Android controls and a WebView that includes HTML with an embedded Flash player.
Sometimes the flash player will ask for permission (and everything thereafter works correctly) and sometimes it will not ask and will instead hang. Is there a way I can force the Flash player to ask for permissions? Or a way I can add my App to a list that the Flash player accepts everytime?
As an example, this is the box that I need to pop up regularly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现了这个问题。这只是因为我使用了一些 HTML 标记。
我没有意识到对象标签不喜欢像 XHTML 指定的那样被终止。删除>>从 param 元素的末尾修复了它。
I found the issue. It was simply due to some HTML markup I had used.
I didn't realise that object tags didn't like being terminated like XHTML designates. Removing /> from the end of the param elements fixed it.