I'm using the following code to let the user select a photo from their device. This is pretty standard and will display the typical chooser dialog showing a list of possible applications that can handle this event.
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), Constants.PICK_PHOTO);
I want to exclude Picasa from this list. Is there a way to do this? Thanks.