Bootstrap

Android 删除图片等资源文件 通知系统更新,重新扫描

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

;