Constantly focusing the Android camera

I need to implement an Android application that uses a camera, and it needs to constantly keep focus in objects. Whenever the user changes the position of the camera, he should autofocus for that position (very similar to Google Goggles).

Now I am using the following code:

    camera.requestautofocus(autofocuscallbak);

This works well, but not continuously ...

+3
source share

All Articles