Start edit activity right after picture is taken at ACTION_IMAGE_CAPTURE activity?

I belive this is impossible because you are launching a seperate app activity which you have no control over. Instead, do this: From your home activity, launch the EditActivity. The EditActivity will have code that immediately in the onCreate launches the camera app using startActivityForResult(); The user should not be able to see the activity if you launch another one in the onCreate method In the EditActivity's onActivityResult have it check the return code, and do whatever you need.

If the picture was taken successfully, continue using the Edit activity. IF not, finish and go back to the home activity.

I belive this is impossible because you are launching a seperate app activity which you have no control over. Instead, do this: From your home activity, launch the EditActivity. The EditActivity will have code that immediately in the onCreate launches the camera app using startActivityForResult(); The user should not be able to see the activity if you launch another one in the onCreate method.In the EditActivity's onActivityResult have it check the return code, and do whatever you need.

If the picture was taken successfully, continue using the Edit activity. IF not, finish and go back to the home activity.

I belive this is impossible because you are launching a seperate app activity which you have no control over. From your home activity, launch the EditActivity. The EditActivity will have code that immediately in the onCreate launches the camera app using startActivityForResult(); The user should not be able to see the activity if you launch another one in the onCreate method.

In the EditActivity's onActivityResult have it check the return code, and do whatever you need. If the picture was taken successfully, continue using the Edit activity. IF not, finish and go back to the home activity.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions