In my code camera preview zoom in/out controls not working on click when click on zoomed controls it gives null pointer exception so please help me any one i have put all code here with xml.
public class CameraActivity extends Activity {
private static final String TAG = "CameraDemo";
String currentImage;
Preview preview;
Button buttonClick;
SurfaceHolder holder;
Camera mcamera;
Bitmap bm;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.camera);
preview = new Preview(this, mcamera);
((FrameLayout) findViewById(R.id.preview)).addView(preview);
buttonClick = (Button) findViewById(R.id.buttonClick);
buttonClick.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
preview.camera.takePicture(null, null, jpegCallback);
}
});
}
PictureCallback jpegCallback = new PictureCallback() {
public void onPictureTaken(final byte[] data, Camera camera) {
camera.startPreview();
FileOutputStream outStream = null;
try {
File myDir = new File("/sdcard/demodirc");
if (!myDir.exists()) {
myDir.mkdirs();
}
String name = "/sdcard/demodirc/Img_"
+ System.currentTimeMillis() + ".jpg";
File img = new File(name);
outStream = new FileOutputStream(img);
outStream.write(data);
outStream.close();
Log.d(TAG, "onPictureTaken - wrote bytes: " + data.length);
} catch (Exception e) {
Toast.makeText(getApplicationContext(),
"Excep" + e.getMessage(),
Toast.LENGTH_SHORT);
}
}
};
}
Here is my preview activity
public class Preview extends SurfaceView implements SurfaceHolder.Callback {
private static final String APP_CLASS = null;
SurfaceHolder mHolder;
public Camera camera;
Bitmap bitmap;
int cameraId;
Context context;
SurfaceHolder holder;
Preview(Context mcontext, Camera mcamera) {
super(mcontext);
context=mcontext;
camera = mcamera;
mHolder = getHolder();
mHolder.addCallback(this);
mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
}
public void surfaceCreated(SurfaceHolder holder) {
camera = Camera.open();
try {
camera.setPreviewDisplay(holder);
} catch (Exception e) {
Log.d(APP_CLASS, "Cannot start preview", e);
}
}
public void surfaceDestroyed(SurfaceHolder holder) {
if (camera != null)
camera.stopPreview();
camera.setPreviewCallback(null);
camera.release();
camera = null;
}
public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
Camera.Parameters parameters = camera.getParameters();
ZoomControls zoomControls = (ZoomControls) findViewById(R.id.zoomControls1);
if(parameters.isZoomSupported()){
maxZoomLevel = parameters.getMaxZoom();
zoomControls.setIsZoomInEnabled(true);
zoomControls.setIsZoomOutEnabled(true);
zoomControls.setOnZoomInClickListener(new OnClickListener(){
public void onClick(View v){
if(currentZoomLevel < MAX_ZOOM){
currentZoomLevel++;
camera.startSmoothZoom(currentZoomLevel);
}
}
});
zoomControls.setOnZoomOutClickListener(new OnClickListener(){
public void onClick(View v){
if(currentZoomLevel > 0){
currentZoomLevel--;
camera.startSmoothZoom(currentZoomLevel);
}
}
});
camera.setParameters(parameters);
camera.startPreview();
}
}
And my camera.xml file
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="420dp"
android:orientation="horizontal" >
<FrameLayout
android:id="@+id/preview"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</FrameLayout>
<Gallery
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:spacing="1pt" />
<Button
android:id="@+id/save"
android:layout_width="90dp"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="-18dp"
android:layout_marginLeft="34dp"
android:text="Save"
android:visibility="invisible" />
<Button
android:id="@+id/discard"
android:layout_width="90dp"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="-18dp"
android:layout_marginRight="33dp"
android:text="Discard"
android:visibility="invisible" />
<Button
android:id="@+id/buttonClick"
android:layout_width="90dp"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="-15dp"
android:text="Capture" />
<ZoomControls
android:id="@+id/zoomControls1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true" />
</RelativeLayout>