I am creating an application wherein I need all the images in the gallery into my application that has a girdview in it. I want all the images from all the folders to appear
Intent intent = new Intent(); intent.setType("image/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(intent, "Select Picture"), SELECT_PICTURE);