File not added to gallery android

前端 未结 1 1392
不知归路
不知归路 2020-12-18 15:20

This app i am making is taking pictures and saving it to sdcard but the images are not being shown in gallery...Is there something wrong with my code

public          


        
相关标签:
1条回答
  • 2020-12-18 15:43

    Try this:

    public void galleryAddPic(String file) {
        File f = new File(file);
        Uri contentUri = Uri.fromFile(f);
        Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE,contentUri);
        sendBroadcast(mediaScanIntent);
    }
    
    0 讨论(0)
提交回复
热议问题