我正在开发一个应用程序,在该应用程序中,我想从从 WEB SERVER 接收的 URL 中播放意图 ACTION VIEW 的视频,但我得到了不支持的文件格式。我的代码是
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
videostring = ib.getVideostring();
Uri data = Uri.parse("file:///https://" + videostring.get(0));
intent.setDataAndType(data, "video/*");
context.startActivity(intent);