Android picture saved to SD card not showing in Gallery

后端 未结 3 1481
走了就别回头了
走了就别回头了 2020-12-21 12:39

Currently I have a program that takes pictures and saves them as a jpg on the top level of the sdcard, but its not appearing in the Gallery. Is there something I must do to

3条回答
  •  Happy的楠姐
    2020-12-21 13:20

    Try this answer. Working for me

    context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(finalFile)));
    

提交回复
热议问题