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 am building an application where i want to capture an image by the default camera activity and return back to my activity and load that image in a imageview. The problem is camera activity always returning null. In my onActivityResult(int requestCode, int resultCode, Intent data) method i am getting data as null. Here is my code

public class CameraCapture extends Activity {

protected boolean _taken = true;
File sdImageMainDirectory;
Uri outputFileUri;

protected static final String PHOTO_TAKEN = "photo_taken";
private static final int CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE = 0;

@Override
public void onCreate(Bundle savedInstanceState) {

    try {

        super.onCreate(savedInstanceState);   
        setContentView(R.layout.cameracapturedimage);
                File root = new File(Environment
                        .getExternalStorageDirectory()
                        + File.separator + "myDir" + File.separator);
                root.mkdirs();
                sdImageMainDirectory = new File(root, "myPicName");



            startCameraActivity();

    } catch (Exception e) {
        finish();
        Toast.makeText(this, "Error occured. Please try again later.",
                Toast.LENGTH_SHORT).show();
    }

}

protected void startCameraActivity() {

    outputFileUri = Uri.fromFile(sdImageMainDirectory);

    Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
    intent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);

    startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {

    switch (requestCode) {
    case CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE:
    {
        if(resultCode==Activity.RESULT_OK)
        {
            try{
            ImageView imageView=(ImageView)findViewById(R.id.cameraImage);
            imageView.setImageBitmap((Bitmap) data.getExtras().get("data"));
            }
            catch (Exception e) {
                // TODO: handle exception
            }
        }

        break;
    }

    default:
        break;
    }
}

 @Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
    if (savedInstanceState.getBoolean(CameraCapture.PHOTO_TAKEN)) {
        _taken = true;
    }
}

@Override
protected void onSaveInstanceState(Bundle outState) {
    outState.putBoolean(CameraCapture.PHOTO_TAKEN, _taken);
}

Am i doing anything wrong??????????

share|improve this question
is the sdcard mounted? where u able to see the image 'myPicName'? and do u have the permissions in the manifest? <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> – Jana Aug 8 '11 at 12:39
I can see the file in the ddms while usb debugging. And i also have given the permission. If i use outputFileUri instead of data when loading the image in the imageview it works. That means camera is capturing the image but why i am getting null in the data parameter of onactivityresult() method – rawcoder064 Aug 8 '11 at 13:05
1  
is it a Samsung phone? – Merlin Sep 14 '11 at 16:32

3 Answers

up vote 15 down vote accepted

You are getting wrong because you are doing it wrong way.

If you pass the extra parameter MediaStore.EXTRA_OUTPUT with the camera intent then camera activity will write the captured image to that path and it will not return the bitmap in the onActivityResult method.

If you will check the path which you are passing then you will know that actually camera had write the captured file in that path.

For further information you can follow this, this and this

share|improve this answer

I had a similar problem. I had commented out some lines in my manifest file which caused the thumbnail data to be returned as null.

You require the following to get this to work:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />

I hope this resolves your issue

If you phone is a Samsung, it could be related to this http://kevinpotgieter.wordpress.com/2011/03/30/null-intent-passed-back-on-samsung-galaxy-tab/

There is another open question which may give additional information

share|improve this answer
I have the same problem and those permissions doesn't change anything I'm afraid. At least not for me, it seems there is no solution. I've searched for days, how come it is like this? I'm extremely frustrated that I can't take a single picture with an app. – cubsink Mar 21 '12 at 11:31
@cubsink what type of phone? – Merlin Mar 21 '12 at 17:13
@cubsink was it a Samsung...? – Slomojo Mar 11 at 23:49
Sorry for the late respone @Merlin. But yes it was a samsung device. It was over a year ago, I guess things have changed now. – cubsink Mar 12 at 12:46
@cubsink, ach it was only a year or so ;) – Merlin Mar 12 at 18:50

I may be missing something, but you never are passing in "data" as an extra in the original intent. Therefore, when you are trying to get this information at this line: data.getExtras().get("data"), it will return null. If I am not catching something, sorry. Hope this helps. Cheers.

share|improve this answer
1  
-1 "data" is set by the native camera activity in the returned intent, not the intent that is being sent. They are two separate intents. – Merlin Sep 10 '11 at 21:47

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.