Android list all images available

前端 未结 2 543
Happy的楠姐
Happy的楠姐 2020-12-18 07:09

I m making an application which requires me to list all the images available on the SD-Card of the phone.

i tried querying the ContentResolver way i.e.



        
2条回答
  •  情话喂你
    2020-12-18 08:01

    You could use the gallery activity to select images, something like this:

    Intent intent = new Intent();
    intent.setType("image/*");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent, "Select Picture"),SELECT_IMAGE);
    

    in the callback for the activity the file uri will be in the intent parameter

提交回复
热议问题