SDK version - 1.6
I am using following intent to open android\'s default gallery:
Intent intent = new Intent();
inte
The accepted answer is not working for me. I use following method to make it:
try{
Bitmap bitmap = MediaStore.Images.Media.getBitmap(this.getActivity().getContentResolver(), uri);
Bitmap thumbBitmap = ThumbnailUtils.extractThumbnail(bitmap,120,120);
// imageView.setImageBitmap(thumbBitmap);
}
catch (IOException ex){
//......
}