如何捕捉“抱歉,该视频无法播放”视频视图错误
我有一个 VideoView,并且正在从远程服务器流式传输视频。大多数时候它会非常流畅地播放视频。但有时,它会显示错误消息“抱歉,该视频无法播放”。我有预感,这更多是关于支持的视频格式。但是,我不知道支持哪些格式。我的问题是“如何捕获此错误(例如防止出现错误消息)”?我在这个项目中使用 Android 2.2。任何建议将不胜感激。 :)
I have a VideoView and I am streaming videos from a remote server. Most of the times It would play the videos very smoothly. But sometimes, it displays an error message "Sorry, This video cannot be played". I have a hunch that this is more on the supported video formats. However, I don't know which are the supported formats. My question is "How can I catch this error (e.g. Prevent the error message from appearing)"? I am using Android 2.2 on this project. Any advice would be greatly appreciated. :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试使用 setOnErrorListener :文档说如果没有指定侦听器,或者如果侦听器返回 false,VideoView 将通知用户任何错误。,所以我假设如果您设置一个并返回 true 它将不显示用户错误。
Try using setOnErrorListener: the documentation says If no listener is specified, or if the listener returned false, VideoView will inform the user of any errors., so I'm assuming if you set one and return true it will not show the user error.
我为此使用的代码:
The code I used for this:
您可以添加如下代码,如果发生任何错误,它将关闭视频视图屏幕。
此外,它不会显示默认弹出窗口,提示视频无法播放:)
you can add code like below, it will close video view screen if any error occurred.
Also, it will not display default popup of saying video can't play :)
我更喜欢在 onCreate 方法中设置这样的侦听器。希望能帮助别人
I prefer setting listeners like this within onCreate method. Hopefully helps someone out