I\'m using ACTION_PICK intent to select an image from gallery. Some albums like \"Posts\", \"Profile Photos\", etc are marked with Picasa icon. Fo
ACTION_PICK
Try opening input stream like this
ContentResolver res = context.getContentResolver(); Uri uri = Uri.parse(intent.getData().toString()); res.openInputStream(uri);