我已将一些图像下载到我的 SD 卡中,我不想在我的画廊中显示它们。有没有办法删除它们?我已阅读有关 .nomedia 文件的信息,但如何创建它们?
是这样做的吗?
File storagePath = new File(Environment.getExternalStorageDirectory(),folderName+"/Covers/");
if (!storagePath.exists())
{
File file = new File(storagePath, ".nomedia");
if (!file.exists()) {
try {
file.createNewFile();
Log.d("created","successful");
}
catch(IOException e) {
}
}
}