Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从我的应用程序的视频视图中删除弹出消息“抱歉此视频无法播放”。我不希望我的应用显示任何错误消息。
设置ErrorListener为您的VideoViewandreturn true从那里开始,现在不会显示错误。
ErrorListener
VideoView
return true
IE:
yourVideoView.setOnErrorListener(new OnErrorListener() { public boolean onError(MediaPlayer mp, int what, int extra) { return true; } });