robert_hly

踩坑填坑记录...

导航

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);

}

posted on 2017-02-16 09:50  robert_hly  阅读(726)  评论(0编辑  收藏  举报