How to Pause downloadmanager in android -


i want allow user pause download's button click or click on notification of downloads , code

downloadbutton.setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) {     if(allow.equals(true)){          uri downloaduri = uri.parse(download_file);         downloadmanager.request request = new downloadmanager.request(downloaduri);           request.setallowednetworktypes(downloadmanager.request.network_wifi);         request.setallowedoverroaming(false);          //request.setnotificationvisibility(request.visibility_visible_notify_completed);          id =  downloadmanager.enqueue(request);          //save request id         sharedpreferences.editor prefedit = preferencemanager.edit();         prefedit.putlong(strpref_download_id, id);         prefedit.commit();     } 

});


Comments

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -