How to filter out unwanted files using Intent.ACTION_GET_CONTENT
问题 I'm using intent.ACTION_GET_CONTENT to allow a user to select images or video files only. this is the way am preparing my intent Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/* | video/*"); intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true); intent.addCategory(Intent.CATEGORY_OPENABLE); XActivity.startActivityForResult(intent, ACQUIRE_IMAGE_AND_VIDEOS_CODE); When i click the button that start this intent, the following apps are display in my customized dialog below