public void delPic(String path){
File delFile = new File(path);
if (delFile.exists()) {
delFile.delete();
//delPic(path);
}
MediaScannerConnection.scanFile(this,new String[]{path},null,null);
}
转载于:https://www.cnblogs.com/exayong/p/6404357.html