I am not sure that will help. I think when you implement mCamera.takePicture
did you try to give it a ShutterCallback like:

    Camera.ShutterCallback mShutterCallback = new Camera.ShutterCallback() {
        public void onShutter() {
            // implement your onshutter actions or leave it blank

        }
    };

then:

       if (keyCode == KeyEvent.KEYCODE_SPACE) {
           mCamera.takePicture(mShutterCallback,null,mPictureCallback);
           return true;
       }

Not sure it is right but it might be helpful. :)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to