Rulogarcillan
Rulogarcillan

Reputation: 1232

auto shot in android.media.action.IMAGE_CAPTURE

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

Answers (1)

Kanth
Kanth

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

Related Questions