Hello for readers,

I would like to open the android camera to look like this one

Intent cameraIntent = new
Intent(android.provider.MediaStore.INTENT_ACTION_VIDEO_CAMERA);
startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST);

Where user may capture an image, record a video or open video/pictures
gallery and select one from there.
Then on return to my app, i would like to find out the path for the
just created/selected media.

Is it possible ?

Currently, to archive my users have to do a click for each operation
like this:

new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
or
new Intent(android.provider.MediaStore.ACTION_VIDEO_CAPTURE);

startActivityForResult(intent, ACTION_PROCESS DATA);

and on activity result i take the media path from data, but if i use

new Intent(android.provider.MediaStore.INTENT_ACTION_VIDEO_CAMERA);

on return to my activity the data is null.
But i like the way camera opens with INTENT_ACTION_VIDEO_CAMERA . it
is exactly what i need.

I am googling for the solution, but in case you have any idea,i would
appreciate you post very much.

Thank you in advance.
Lidy

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

Reply via email to