Skip to content Skip to sidebar Skip to footer

Android Gallery Not Instantly Refreshed With New Recorded Videos

With the following code, the Android Gallery is not refreshed instantly. If i try to see the new files, I need to restart the device or wait. private void addVideoGaller

Solution 1:

Solved with:

      ContentValues values = new ContentValues();

      values.put(MediaStore.Video.Media.DATA, outputfilename);
      ContentResolver resolver = MainActivity.this.getContentResolver();
      resolver.insert(Video.Media.EXTERNAL_CONTENT_URI, values);

Post a Comment for "Android Gallery Not Instantly Refreshed With New Recorded Videos"