我在应用中下载了.mp3,但我无法在Windows Media Player上播放.mp3。我尝试使用Microsoft Groove音乐播放器,Google Play音乐是我手机上内置的音乐播放器,但都没有打开它......只是媒体播放器:D 那么你有什么想法可以解决这个问题吗?
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(mediaURL));
request.allowScanningByMediaScanner();
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setMimeType("audio/MP3");
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, nameOfTheFile + "." + extension);
DownloadManager manager = (DownloadManager) mContext.getSystemService(Context.DOWNLOAD_SERVICE);
manager.enqueue(request);
如果我删除" request.setMimeType(" audio / MP3");"但是,Media Player仍然可以播放它。
答案 0 :(得分:0)
好的,问题是我的文件名中有一个冒号......