我正在使用下載管理器從網址下載文件。並且文件被成功下載。下載管理器進度在通知區域中不可見
問題
文件默默地下載,通知區域中的任何通知。
下載管理器在我的設備上運行android 6.0時顯示通知(帶進度條)。在我將設備更新到android 7.0後,下載管理器在通知區域上不顯示任何通知。
這裏是我的代碼
Uri uri = Uri.parse("file://" + destination);
url = "http:....."; //Valid File URL
//Set up download manager request
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
request.setDescription("Downloading " + file_name);
request.setTitle("My Downloader");
request.setDestinationUri(uri); //URI is valid
//Start the download
DownloadManager manager = (DownloadManager) getContext()
.getSystemService(Context.DOWNLOAD_SERVICE);
還加入request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE);
是沒有幫助我的情況。
構建信息
這裏是我的搖籃構建infformation。
minSdkVersion 22
targetSdkVersion 23
compileSdkVersion 25
buildToolsVersion "25.0.2"