Intent takePicIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);Intent pickPicIntent = new Intent(Intent.ACTION_GET_CONTENT);pickPicIntent.setType("image/*");Intent chooserIntent = Intent.createChooser(takePicIntent, "Choose intent");chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[]{pickPicIntent});startActivityForResult(chooserIntent, REQUEST_CODE);启动的多余的Intent用数组的形式组合起来,传递给createChooser.