Android: Refreshing the Gallery after saving new images

后端 未结 8 919
天涯浪人
天涯浪人 2020-12-02 19:20

So in my application I at one point save a bunch of images to a temporary folder, and I want them to show up immediately in the Gallery. Off of a reboot, they do, but otherw

8条回答
  •  眼角桃花
    2020-12-02 19:43

    Try this one: after saving your file to folder,write below code

    sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(new File("your image path"))));
    

提交回复
热议问题