之前曾有人问过这个问题(不是特别喜欢这个问题),但还没有一个完全排他的答案。因此,我们正在尝试在此处找到最佳解决方案。我正在开发一个应用程序,并且在我的应用程序中,我通过将文件移动到名为myPic
的目录来隐藏名为.myPic
的目录。当我隐藏照片时,缩略图仍在图库中。我发现3解决方案:
第一个解决方案:
使用 ACTION_MEDIA_MOUNTED 广泛的类型转换,如下所示:
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory())));
这段代码的问题是,它需要拥抱资源,最重要的是自android 4.4 以来,它被阻止了。因此,使用此方法向画廊添加10张图片是不合理的。因此它不是All独占方法。也使用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
的旧路径时,没有任何 react 。 logcat说该文件不存在。因此MediaScannerConnection
仅将文件添加到图库。如果我将1.jpg
的新路径传递给MediaScannerConnection
怎么办?好吧,它将1.jpg
从.myPic
目录添加到图库中,而这正是而不是我想要的。因此,再次不是All Exclusive 方法第三种解决方案:
使用
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()
吗?对于已删除的文件缩略图显示在图库中的情况,这可能是完全排他的方法。我有我的文件路径,我只需要从媒体商店内容提供商中将其删除。更新:
因此事实证明,在第三个解决方案中使用
Uri.parse(path)
是错误的。 image Uri以content://
开头,可以通过MediaScannerConnection
检索。所以我创建了一个称为Uri
的imageInGalleryUri
并为其分配了null
值。使用scanFile
函数,我不时更改了它的值,并将其值传递给getContentResolver()
。这是代码: boolean whereIsMediaState = true;
Uri imageInGalleryUri = 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);
scanFile(from);
File to = new File(Environment.getExternalStorageDirectory()+"/.myPic"+fileName);
from.renameTo(to);
if (to.isFile()){
try {
getContentResolver().delete(imageInGalleryUri,null,null);}
catch(Exception e) {
Log.d("Rename", "Error happened");
}
}
}
} else {
Toast.makeText(getApplicationContext(), "myPic directory not found", Toast.LENGTH_LONG).show();
}
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);
imageInGalleryUri = uri;
}
});
}
我尝试了代码,但它仅检测到第一张图像并将其从图库中删除,但不影响其他图像。我不知道为什么。任何的想法?提前谢谢你的帮助
最佳答案
。之前的文件夹只是使其不可见。但是有办法说完全不要使用此文件夹来显示图库。
请尝试将名为“.nomedia”的空文件放入您的文件夹。
关于java - 隐藏图像时从图库中删除图像缩略图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29843846/