Some time picture or video not dispay in galley after write in sdcard to internal memory. below code help me for that issue
Just pass your full path in below methods
private void galleryAddPic(String fpath) {
try {
Intent mediaScanIntent = new Intent(
"android.intent.action.MEDIA_SCANNER_SCAN_FILE");
File f = new File(fpath);
Uri contentUri = Uri.fromFile(f);
mediaScanIntent.setData(contentUri);
this.sendBroadcast(mediaScanIntent);
} catch (Exception e) {
e.printStackTrace();
}
}
No comments:
Post a Comment