Hi All, In my application, I am using "android.provider.MediaStore.ACTION_IMAGE_CAPTURE & ACTION_VIDEO_CAPTURE" intents to take pictures and videos which will then be send over to the backend.
How do I retrieve the default pathname of the intents? One way is to use "putExtra(android.provider.MediaStore.EXTRA_OUTPUT, uri)" but then if I take a picture it is saved twice, one in the specified uri and another in the dafault path (/sdcard/DCIM/CAMERA...). Is there any way where after taking the picture (the sending to the backend is already done) I can retrieve the default path and then delete that image/video? Also I noticed that when calling "protected void onActivity (int requestcode ....)", I can only do so for either the camera or video intent. Within the same method, the application crashes. How do I handle multiple intents? Thanks In Advance, Perumal -- 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

