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するVideoViewとreturn true、そこからエラーは表示されなくなります。
ErrorListener
VideoView
return true
すなわち:
yourVideoView.setOnErrorListener(new OnErrorListener() { public boolean onError(MediaPlayer mp, int what, int extra) { return true; } });