Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I implemented the application for getting image from the camera album in sdcard.But it is not working properly.

Here Intent returns like this Intent { act=com.htc.HTCAlbum.action.ITEM_PICKER_FROM_COLLECTIONS dat=content://media/external/images/media/9 typ=image/jpeg (has extras) }

In the code

Bitmap thumbnail = (Bitmap) data.getExtras().get("data");
Here (Bitmap) data.getExtras().get("data") this part returns null.

How to get the bitmap here please can anybody help me.

Code:

cam_images_btn.setOnClickListener(new OnClickListener(){

        @Override
        public void onClick(View v) {

             Intent cam_ImagesIntent = new Intent(Intent.ACTION_GET_CONTENT);
             cam_ImagesIntent.setType("image/*");
             startActivityForResult(cam_ImagesIntent, CAMERA_IMAGES_REQUEST); 
        }       
    }); 

    if(requestCode == CAMERA_IMAGES_REQUEST && resultCode==Activity.RESULT_OK)
    {
        System.out.println("data(CAMERA_IMAGES_REQUEST):"+data);
        if(data != null)
        {           
            Bitmap thumbnail = (Bitmap) data.getExtras().get("data"); 
            System.out.println("Bitmap(CAMERA_IMAGES_REQUEST):"+thumbnail);
            System.out.println("cap_image(CAMERA_IMAGES_REQUEST):"+cap_image);
            cap_image.setImageBitmap(thumbnail); 
        }
        else
        {
            System.out.println("SDCard have no images");
            Toast.makeText(camera.this, "SDCard have no images", Toast.LENGTH_SHORT);        
        }
    }

thanks

share|improve this question
The image URI is returned instead of Image itself. Have a look here how to parse URI and get Image – Adil Soomro Oct 20 '11 at 8:10

2 Answers

up vote 1 down vote accepted

Do the following in your code:

 if(data != null)
    {           
        Uri selectedImageUri = data.getData();
        filestring = selectedImageUri.getPath();

      Bitmap thumbnail = BitmapFactory.decodeFile(filestring, options2);

        System.out.println("Bitmap(CAMERA_IMAGES_REQUEST):"+thumbnail);
        System.out.println("cap_image(CAMERA_IMAGES_REQUEST):"+cap_image);
        cap_image.setImageBitmap(thumbnail); 
    }

This should work.

Edit: Also if you want a "thumbnail" do the following:

Bitmap bitmap = MediaStore.Images.Thumbnails.getThumbnail(
                    getContentResolver(), selectedImageUriId,
                    MediaStore.Images.Thumbnails.MICRO_KIND,
                    (BitmapFactory.Options) null);
share|improve this answer
Here what is option2? can i replace this with null – naresh Oct 20 '11 at 8:10
options is to get the image parameters as to how you want to set it. Create it with BitmapFactory.Options options = new BitmapFactory.Options(); – GamDroid Oct 20 '11 at 8:13
what is selectedImageUriId? Previous code is still not working it returns the null for bitmap – naresh Oct 20 '11 at 8:19
you will have to get the numeric "ID" of the image path say "fileString". This means if the path is "some/somthing/4" then 4 is the ID of that image. This original ID should be passed on to getThumbnail(). – GamDroid Oct 20 '11 at 8:28
For bitmap you should use BitmapFactory. Like this: BitmapFactory.Options options = new BitmapFactory.Options(); options.inSampleSize = 4;Bitmap bm = BitmapFactory.decodeFile(pathString, options); – GamDroid Oct 20 '11 at 8:30
show 4 more comments

I have this code:

public void onGalleryRequest() {
    Intent intent = new Intent();
    intent.setType("image/*");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(
            Intent.createChooser(intent,
                        getResources().getString(R.string.selectImage)),
            GALLERY_REQ);
}

and then in onActivityResult I make this test:

if (requestCode == CAMERA_PIC_REQUEST && data != null
            && resultCode != 0)

it works for me api level 7

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.