I am building a custom camera with auto focus, and was merely wondering if there is a way to invoke the same auto-focus rectangular indicator that the native camera has or if i have to build that from scratch.. any examples or tutorial links would be greatly appreciated.
|
|
|
It might be helpful to look at the way the most recent Jelly Bean 4.2 camera handles this. You can download the Camera source as follows:
Once you have the code, navigate to the
The Jelly Bean example may be a little complicated for what you are looking for, so below are some guidelines for the way I implemented visual feedback for autofocus. The process can be somewhat complicated. I don't pretend my way is the best way to do this, but here is some example code that gives you the general idea... In my camera preview layout xml file:
This AutofocusCrosshair class is the following:
And when, in my activity, I want to start autofocus I do the following:
And make sure at the end of your animation to clear the image:
|
|||||||
|
|
If you mean the little rectangle which changes colour in the preview screen of the camera app, I'm pretty sure you have to draw that yourself. Sorry if that's not the answer you wanted! However, you can call I'm sorry, too, that I don't know of a good tutorial that describes using the focus mechanisms. One thing I've learnt in the past week: don't call I built my first Android camera app from example code at http://marakana.com/forums/android/examples/39.html but beware, the code as written there writes every preview frame to SD card and fills it up quickly! And there's no code in there about autofocus. Edit: Of course, the ultimate example code, including the focus indicator, is in the camera app source code. This question: Where can I get the Android camera application source code? tells how to get it. I just followed the instructions there and got about 35Mbytes of source, and I'm afraid I haven't found the little focussing rectangle yet! |
||||
|
|


