i want to pick an image from the gallery, but i want the gallery to only show images. I create my intent like this, but i still see videos on some devices
Intent intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
intent.setType("image/*");
EDIT:
for kitkat devices i build the intent like this.
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");