J'utilise Android Download Manager pour télécharger la liste de fichiers. Dernièrement je suis tombé sur un rapport d'accident disant
Unknown Java.lang.IllegalArgumentException: Unknown URL content://downloads/my_downloads
Puis, plus tard, j'ai compris que la raison en est que l'utilisateur a désactivé Android Download Manager. Je vérifie si le gestionnaire de téléchargement est désactivé en vérifiant le nom de son package avec le code ci-dessous.
int state = this.getPackageManager().getApplicationEnabledSetting("com.Android.providers.downloads");
Et maintenant, je dois trouver un moyen d'activer le gestionnaire de téléchargement s'il est désactivé. J'ai essayé de définir son état enable avec l'autorisation dans Manifest mais je continue à recevoir une exception de sécurité.
this.getPackageManager().setApplicationEnabledSetting("com.Android.providers.downloads", PackageManager.COMPONENT_ENABLED_STATE_DEFAULT, 0);
<uses-permission Android:name="Android.permission.CHANGE_COMPONENT_ENABLED_STATE"/>
J'ai donc pensé qu'il pourrait ne pas être accessible à cause de cela, c'est une application système. (Google Play App le fait).
Existe-t-il un moyen de rediriger l'utilisateur vers la vue Informations d'application de Download Manager? laisser l'utilisateur l'activer? S'il n'y a aucun moyen de l'activer au moment de l'exécution par programmation.
Certains cherchaient une réponse à cette question et je viens de me rendre compte que la réponse apportée à cette question est en quelque sorte supprimée. Je veux donc répondre à ma propre question.
Il n’existe aucun moyen d’activer/désactiver directement Download Manager, car il s’agit d’une application système et nous n’y avons pas accès.
Il ne reste plus qu'à rediriger l'utilisateur vers la page d'informations de l'application Download Manager.
try {
//Open the specific App Info page:
Intent intent = new Intent(Android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
intent.setData(Uri.parse("package:" + "com.Android.providers.downloads"));
startActivity(intent);
} catch ( ActivityNotFoundException e ) {
e.printStackTrace();
//Open the generic Apps page:
Intent intent = new Intent(Android.provider.Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);
startActivity(intent);
}
S'il vous plaît éditer ma réponse si n'est pas valide
Vérifiez si le gestionnaire de téléchargement est disponible:
int state = this.getPackageManager().getApplicationEnabledSetting("com.Android.providers.downloads");
if(state==PackageManager.COMPONENT_ENABLED_STATE_DISABLED||
state==PackageManager.COMPONENT_ENABLED_STATE_DISABLED_USER
||state==PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED){
// Cannot download using download manager
}
else {
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, fileName);
request.setDescription(fileName);
manager.enqueue(request);
}
Et la solution pour essayer d'activer le gestionnaire de téléchargement est la suivante:
packageName = "com.Android.providers.downloads"
try {
//Open the specific App Info page:
Intent intent = new Intent(Android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
intent.setData(Uri.parse("package:" + packageName));
startActivity(intent);
} catch ( ActivityNotFoundException e ) {
//e.printStackTrace();
//Open the generic Apps page:
Intent intent = new Intent(Android.provider.Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);
startActivity(intent);
}
Google Gmail Inbox a vérifié si DownloadManager était désactivé. Si la valeur est true, affichez un AlertDialog pour indiquer à l'utilisateur d'activer DownloadManager dans les paramètres.
J'ai écrit une classe appelée DownloadManagerResolver pour résoudre ce problème, espérons que cela pourra vous aider. :)
public final class DownloadManagerResolver {
private static final String DOWNLOAD_MANAGER_PACKAGE_NAME = "com.Android.providers.downloads";
/**
* Resolve whether the DownloadManager is enable in current devices.
*
* @return true if DownloadManager is enable,false otherwise.
*/
public static boolean resolve(Context context) {
boolean enable = resolveEnable(context);
if (!enable) {
AlertDialog alertDialog = createDialog(context);
alertDialog.show();
}
return enable;
}
/**
* Resolve whether the DownloadManager is enable in current devices.
*
* @param context
* @return true if DownloadManager is enable,false otherwise.
*/
private static boolean resolveEnable(Context context) {
int state = context.getPackageManager()
.getApplicationEnabledSetting(DOWNLOAD_MANAGER_PACKAGE_NAME);
if (Build.VERSION.SDK_INT > Build.VERSION_CODES.JELLY_BEAN_MR2) {
return !(state == PackageManager.COMPONENT_ENABLED_STATE_DISABLED ||
state == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_USER
|| state == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED);
} else {
return !(state == PackageManager.COMPONENT_ENABLED_STATE_DISABLED ||
state == PackageManager.COMPONENT_ENABLED_STATE_DISABLED_USER);
}
}
private static AlertDialog createDialog(final Context context) {
AppCompatTextView messageTextView = new AppCompatTextView(context);
messageTextView.setTextSize(16f);
messageTextView.setText("DownloadManager is disabled. Please enable it.");
return new AlertDialog.Builder(context)
.setView(messageTextView, 50, 30, 50, 30)
.setPositiveButton("ok", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
enableDownloadManager(context);
}
})
.setCancelable(false)
.create();
}
/**
* Start activity to Settings to enable DownloadManager.
*/
private static void enableDownloadManager(Context context) {
try {
//Open the specific App Info page:
Intent intent = new Intent(Android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
intent.setData(Uri.parse("package:" + DOWNLOAD_MANAGER_PACKAGE_NAME));
context.startActivity(intent);
} catch (ActivityNotFoundException e) {
e.printStackTrace();
//Open the generic Apps page:
Intent intent = new Intent(Android.provider.Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);
context.startActivity(intent);
}
}
}
Peut-être que c'est de l'aide pour vous.
downloadManager = (DownloadManager)getSystemService(DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(Download_Uri);
//Restrict the types of networks over which this download may proceed.
request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI | DownloadManager.Request.NETWORK_MOBILE);
//Set whether this download may proceed over a roaming connection.
request.setAllowedOverRoaming(false);
//Set the title of this download, to be displayed in notifications (if enabled).
request.setTitle("My Data Download");
//Set a description of this download, to be displayed in notifications (if enabled)
request.setDescription("Android Data download using DownloadManager.");
//Set the local destination for the downloaded file to a path within the application's external files directory
request.setDestinationInExternalFilesDir(this,Environment.DIRECTORY_DOWNLOADS,"CountryList.json");
//Enqueue a new download and same the referenceId
downloadReference = downloadManager.enqueue(request);
http://www.mysamplecode.com/2012/09/Android-downloadmanager-example.html