I am developing an android custom camera application without using the intent (to avoid getting android's built in camera features). I have enabled auto focus feature in my app. I am taking the picture on press of a keyVolume Button. And I am using the below code for setting the parameters.
Camera.Parameters p = camera.getParameters();
camera.autoFocus(autoFocusCallback);
p.setFocusMode(Parameters.FOCUS_MODE_AUTO);
camera.setParameters(p1);
camera.takePicture(shutterCallback, rawCallback, jpgCallback);
void setHandler(Handler autoFocusHandler, int autoFocusMessage)
{
this.autoFocusHandler = autoFocusHandler;
this.autoFocusMessage = autoFocusMessage;
}
private AutoFocusCallback autoFocusCallback = new AutoFocusCallback()
{
private Object success;
@Override
public void onAutoFocus(boolean autoFocusSuccess, Camera camera)
{
if (autoFocusHandler != null)
{
Message message = autoFocusHandler.obtainMessage(autoFocusMessage, success);
autoFocusHandler.sendMessageDelayed(message, AUTOFOCUS_INTERVAL_MS);
autoFocusHandler = null;
}
else
{
}
}
};
But the problem is that, this code works fine only for LG phone. and i am getting force close on all other phones after running it.
And the Error Log looks like this
http://textuploader.com/?p=6&id=kOc9G
Not getting where i am going wrong. Please Help! Thanks!
Different phones have different camera params. Check if mode available befire actually setting it.
For example, in your case there is
public List<String> getSupportedFocusModes ()
function ofCamera.Parameters
class.Afaik, cheap phones like acer or zte or some others, have very weak programming support for their cameras.
UPD: code sample