用android下载管理器下载视频文件后,
它说'抱歉无法播放此视频
mxplayer
和
再次,它不起作用这是我的代码:我在onClickListener
RecyclerView
中使用此代码
public void onClick(View v) {
DownloadManager downloadManager = (DownloadManager) context.getSystemService (Context.DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(questionha.get(position).getQuestionDownLink()));
request.setTitle(questionha.get(position).getQuestionTitle())
.setDescription("downloading ...")
.setDestinationInExternalFilesDir(context, "", questionha.get(position).getQuestionDownFileName());
long enqueueId = downloadManager.enqueue(request);
}
我在这里找到了相同的question,但它没有回答,而这是我在EsFileExplorer中的文件的图像
http://i.stack.imgur.com/X5BXG.jpg
我也添加了我的json响应: http://i.stack.imgur.com/MGIUd.jpg