Hey guys,

I need some guidance here. I am using the camera to take some photos
in app and setting the 3 specific call back functions for the
different levels of photo completion. Now when the last functions is
called jpegCallBack I would like to start a new activity however this
does not work! I am creating a new activity and calling start activity
as shown below but nothing happens!

                        Intent startImage = new Intent
(CameraActivity.this,SubmitForm.class);
                        startImage.putExtra("image", image);
                        startActivity(startImage);

Does anyone have any insight into why nothing happens? It's driving me
up the wall. I even tried setting up a broadcast receiver and calling
a it in the on receive method but still no dice. It just does nothing
no error just nothing.

Any help greatly appreciated.

Tom

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to