大概 90% 的时间,回调将无法触发。因此我的照片永远不会被保存。
我究竟做错了什么?
@Override
public boolean onTouchEvent(MotionEvent event)
{
boolean result = super.onTouchEvent(event);
int action = event.getAction();
if(action == MotionEvent.ACTION_DOWN)
{
takePicture();
this.finish(); // ERROR IS HERE. Closing down before callback is done.
}
return result;
}
private void takePicture() {
if (mCamera != null)
mCamera.takePicture(shutterCallback, null, jpegCallback);
}
ShutterCallback shutterCallback = new ShutterCallback() {
public void onShutter() {
AudioManager meng = (AudioManager) getBaseContext().getSystemService(Context.AUDIO_SERVICE);
int volume = meng.getStreamVolume( AudioManager.STREAM_NOTIFICATION);
if (volume != 0)
{
MediaPlayer _shootMP = MediaPlayer.create(getBaseContext(), Uri.parse("file:///system/media/audio/ui/camera_click.ogg"));
_shootMP.start();
}
Toast.makeText(CameraActivity.this, "Picture Taken", Toast.LENGTH_SHORT).show();
}
};
PictureCallback rawCallback = new PictureCallback() {
public void onPictureTaken(byte[] _data, Camera _camera) {
// TODO Do something with the image RAW data.
int test = 1;
}
};
PictureCallback jpegCallback = new PictureCallback() {
public void onPictureTaken(byte[] _data, Camera _camera) {
File photo=new File(Environment.getExternalStorageDirectory(), "photo1.jpg");
if (photo.exists()) {
photo.delete();
}
try {
FileOutputStream fos=new FileOutputStream(photo.getPath());
fos.write(_data);
fos.close();
}
catch (java.io.IOException e) {
Log.e("PictureDemo", "Exception in photoCallback", e);
}
SqlDB.SavePhoto(1, _data);
}
};