0

我正在创建一个使用相机意图拍照的简单应用程序。它可以工作并且图片被保存在: storage/emulated/sd/pictures/my_folder 。问题是我无法从 Android Gallery 应用程序中看到这些图片。

我看到了不同的帖子,但我找不到答案。我怎样才能看图片?

谢谢

4

1 回答 1

3

You just need to send an broadcast "ACTION_MEDIA_SCANNER_SCAN_FILE" so that the mediascanner can scan for the image you saved.

 Intent mediaScanIntent = new Intent( Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
 mediaScanIntent.setData(uri);
 sendBroadcast(mediaScanIntent);

just set the uri of the the newly created image. :)

Click to view Source :)

于 2013-11-05T19:02:31.247 回答