2

I've added a video file in /mnt/sdcard/DCIM/somefolder But it is not visible in the gallery. Could anyone help me please to understand what is wrong?

File dir = new File(Environment.getExternalStoragePublicDirectory(
            Environment.DIRECTORY_DCIM), "/somefolder");
    if (!dir.exists()) {
        dir.mkdirs();
    }

    mrec.setOutputFile(dir.getPath() + "/video" + ".mp4");
4

1 回答 1

5

just add these lines:

sendBroadcast(new Intent(
Intent.ACTION_MEDIA_MOUNTED,
Uri.parse("file://" + Environment.getExternalStorageDirectory())));
于 2013-02-04T11:58:52.027 回答