安卓照相机app没有系统的缩略图

我用AS写的照相机APP存储在本地的照片为什么在系统相册缩略图里面找不到?

请将照片放入系统相册:http://www.tuicool.com/articles/QVFv2aB

需要把拍的照片插入本地相册,然后发送一个广播通知更新。

 try {
        MediaStore.Images.Media.insertImage(getApplicationContext().getContentResolver(),
                file.getAbsolutePath(), fileName, null);
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    }
    // 最后通知图库更新
    getApplicationContext().sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://" + file.getAbsolutePath())));