Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>

share|improve this question
which version of android you are using? – ρяσѕρєя K Jun 27 '12 at 4:57
i am using 2.2 verson – user1369214 Jun 27 '12 at 5:06
Does your device support zoom? Check using function isZoomSupported (). – Pallavi Jun 27 '12 at 5:20
i checked but not working – user1369214 Jun 27 '12 at 5:25
is it supported? – Pallavi Jun 27 '12 at 6:02
show 5 more comments

closed as not a real question by Kev Jun 27 '12 at 12:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.