Currently, I am using below code
to fetch an image from gallery
Intent galleryIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
galleryIntent.setType("image/*");
startActivityForResult(galleryIntent, Constants.SELECT_GALLERY);
But the issue is that its also showing GIF
file, when open gallery, I want only image files, I have also tried this
galleryIntent.setType("image/jpeg, image/png");
But the result is same. How could I achieve this?