如何在Android中隐藏图库?

时间:2016-07-30 15:09:15

标签: android android-image android-gallery

我从服务器下载图像并将其保存在内部存储中。但我想隐藏图库中的那些图像。我怎么能这样做?

我听说.DirName的命名文件夹会隐藏图片,但在我的情况下它不起作用。 (电话未植根)

public void myDownload(String myURL) {

    DownloadManager.Request request = new DownloadManager.Request(Uri.parse(myURL));
    //request.setTitle("File Download");
    //request.setDescription("Downloading....");

    //request.setAllowedNetworkTypes(DownloadManager.Request.NETWORK_WIFI);
    request.allowScanningByMediaScanner();
    //request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
    request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_HIDDEN);
    String nameOfFile = URLUtil.guessFileName(myURL, null, MimeTypeMap.getFileExtensionFromUrl(myURL));

    //request.setDestinationInExternalPublicDir(Environment.getExternalStorageDirectory().getPath() + "/KiiTTimeTableData/" + year + "/" + branch + "/" + section + "/", nameOfFile);
    //request.setDestinationInExternalPublicDir("/MyDataFinal/", nameOfFile);
    request.setDestinationInExternalPublicDir("/KiiTTimeTableData/Data/", nameOfFile);

    DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
    manager.enqueue(request);
}

1 个答案:

答案 0 :(得分:0)

您可以尝试在照片文件夹中创建文件名 .nomedia (在前缀中包含点)。这将阻止Android的媒体扫描程序读取您的媒体文件,并将其包含在图库或音乐等应用中。

您可以尝试的另一种方法是加密文件,请阅读以下文章:How to encrypt file from SD card using AES in Android?