之前已经问过这个问题(不是特别喜欢这个),但还没有一个全部独家回答。所以我们试图找到最好的解决方案。我正在开发一个应用程序,在我的应用程序中,我通过将其文件移动到名为myPic
的目录来隐藏名为.myPic
的目录。当我隐藏我的照片时,它的缩略图仍在画廊中。我找到了3个解决方案:
使用 ACTION_MEDIA_MOUNTED 广泛投射:
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory())));
这段代码的问题在于它需要拥抱资源,最重要的是它自ACTION_MEDIA_SCANNER_SCAN_FILE
也不能在android 4.4上工作
使用MediaScannerConnection
。所以我创建了一个for
循环并传递了我隐藏的每个文件的旧地址。这是我的MediaScannerConnection
函数:
private void scanFile(File file) {
// Tell the media scanner about the new file so that it is
// immediately available to the user.
MediaScannerConnection.scanFile(this,new String[] { file.toString() }, null,
new MediaScannerConnection.OnScanCompletedListener() {
public void onScanCompleted(String path, Uri uri) {
Log.i("ExternalStorage", "Scanned " + path + ":");
Log.i("ExternalStorage", "-> uri=" + uri);
}
});
}
关于MediaScannerConnection
的事情是它只在文件存在时才会生效。所以我假设我在1.jpg
目录中有一张名为myPic
的图片。使用这个类我可以立即将1.jpg
添加到我的画廊,但是当我将1.jpg
移动到.myPic
目录并且我扫描1.jpg
的旧路径时,没有任何事情发生。 logcat说这个文件不存在。所以MediaScannerConnection
只将文件添加到图库。如果我将1.jpg
的新路径传递给MediaScannerConnection
怎么办?好吧,它会将1.jpg
目录中的.myPic
添加到图库中,而这正是不我想要的内容。所以再次不是全部独家方法
使用getContentResolver()
。因此,对于删除缩略图,此方法可能是最终的解决方案。所以我写了吹码。在每个循环中,我检索图像的路径并将其传递给getContentResolver().delete(Uri.parse(path),null,null)
。这是代码:
File myPic = new File(Environment.getExternalStorageDirectory()+"/myPic");
File myPicHide = new File(Environment.getExternalStorageDirectory()+"/.myPic");
if (!(myPicHide.exists()) & !(myPicHide.isDirectory())) {
myPicHide.mkdirs();
};
if (myPic.isDirectory()) {
String[] childeren = myPic.list();
if (childeren.length > 0) {
for (int i = 0; i < childeren.length; i++) {
String fileName = childeren[i];
File from = new File(Environment.getExternalStorageDirectory()+"/myPic"+fileName);
File to = new File(Environment.getExternalStorageDirectory()+"/.myPic"+fileName);
from.renameTo(to);
try {
String path = from.toString();
getContentResolver().delete(Uri.parse(path),null,null);
} catch(Exception e) {
Log.d("Rename", "Error happened");
}
}
}
} else {
Toast.makeText(getApplicationContext(), "myPic directory not found", Toast.LENGTH_LONG).show();
}
但它也无法正常工作,我的文件的缩略图仍显示在厨房中。我是以错误的方式使用getContentResolver()
吗?这可能是所有Exclusive方法,用于删除文件缩略图显示在库中的情况。我有我的文件路径,我只需要从媒体商店内容提供商中删除它。
更新
事实证明在第三个解决方案中使用Uri.parse(path)
是错误的。图像Uri以content://
开头,可以通过MediaScannerConnection
检索。所以我创建了一个名为Uri
的{{1}},并为其指定了imageInGalleryUri
值。使用我的null
功能,我不时更改它的值,并将其值传递给scanFile
。这是代码:
getContentResolver()
我尝试了代码,但它只检测第一张图片并将其从图库中删除但不影响其他图片。我无法弄清楚原因。任何的想法?
提前感谢您的帮助
答案 0 :(得分:1)
。文件夹之前只是让它不可见。但是有办法说不要使用这个文件夹来画廊。 请尝试将名为“.nomedia”文件的空文件放入您的文件夹中。