Get all photos from Android device android programming

前端 未结 2 1300
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-19 09:21

I am trying to fetch all the photos of my android device.

I have an onCreate function:

public void onCreate(Bundle savedInstanceState)          


        
2条回答
  •  逝去的感伤
    2021-01-19 09:59

    just give it a try even if your device has only internal storage no external storage,

    try adding permissions:

    
    

    and read using

    android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
    

提交回复
热议问题