Reputation: 1232
I have
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
Is posible take the photo automatically after 10 seconds?
Thanks
Upvotes: 1
Views: 962
Reputation: 6751
You most probably need to use your own activity
to make that done automatically. Because the activity(android.media.action.IMAGE_CAPTURE
) you start isn't the one of your's to make it automatically do or to modify the code to make the job done. Refer this good post to have the camera work according to your requirement.
Upvotes: 2