BruceDu
BruceDu

Reputation: 290

onActivityResult called before take photo

I need to take a photo then upload the photo to server. Something gets weird, because when I startActivityForResult as below, onActivityResult is just called immediately, I need it to be called when I done talking photos. Is it because my Activity is going to destroyed? What should I do? Thanks!

            Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
            startActivityForResult(intent, REQUEST_CODE_CROP_PHOTO);

Upvotes: 1

Views: 207

Answers (1)

BruceDu
BruceDu

Reputation: 290

The right answer is

android:launchMode="standard"

Thank Petrus.

Upvotes: 1

Related Questions