I am using this code, to open the default Image gallery and select one Image.
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse
("file://"+ Environment.getExternalStorageDirectory())));
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent, 0);
This works perfectly fine in android 2.2 and 2.3, but doesn't work in HoneyComb tablet (v 3.2).
What could be the issue ?