I am running ScheduledExecutorService
inside of my service which takes image in background. ScheduledExecutorService
running only once means taking only one picture after the interval passed in function. Showing no errors at all. Following is the code of my Service
package com.anawaz.spy;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import android.app.Service;
import android.content.Intent;
import android.hardware.Camera;
import android.hardware.Camera.PictureCallback;
import android.hardware.Camera.ShutterCallback;
import android.os.IBinder;
import android.util.Log;
public class CamService extends Service {
private static final String TAG = "TAG";
private final ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);
Camera camera;
ScheduledFuture beeperHandle;
/* Service Life cycle Overrides */
@Override
public void onCreate() {
super.onCreate();
camera = Camera.open();
try {
camera.setPreviewDisplay(null);
} catch (IOException e) {
e.printStackTrace();
}
//takePicsPeriodically(MainActivity.getSpInt(MainActivity.SP_Period));
takePicsPeriodically(5);
}
@Override
public void onDestroy() {
stopPics();
super.onDestroy();
}
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
// @Override
// public IBinder onBind(Intent arg0) {
// return myRemoteServiceStub;
// }
// /* ----------------------------------- */
//
// private IMyRemoteService.Stub myRemoteServiceStub = new
// IMyRemoteService.Stub() {
//
// /* Basic Service Methods */
// public boolean isCollecting() {
// return (beeperHandle != null);
// }
// /* ------------------------- */
// };
public void takePicsPeriodically(long period) {
final Runnable beeper = new Runnable() {
public void run() {
Log.d("TAG", "New Picture Taken");
camera.takePicture(shutterCallback, rawCallback, jpegCallback);
}
};
camera.startPreview();
beeperHandle = scheduler.scheduleAtFixedRate(beeper, period, period,TimeUnit.SECONDS);
}
public void stopPics() {
beeperHandle.cancel(true);
beeperHandle = null;
camera.stopPreview();
camera.release();
camera = null;
}
/* Camera Call backs */
ShutterCallback shutterCallback = new ShutterCallback() {
public void onShutter() {
Log.d(TAG, "onShutter'd");
}
};
/** Handles data for raw picture */
PictureCallback rawCallback = new PictureCallback() {
public void onPictureTaken(byte[] data, Camera camera) {
Log.d(TAG, "onPictureTaken - raw");
}
};
/** Handles data for j peg picture */
PictureCallback jpegCallback = new PictureCallback() {
public void onPictureTaken(byte[] data, Camera camera) {
FileOutputStream outStream = null;
try {
// write to local sand box file system
// outStream =
// CameraDemo.this.openFileOutput(String.format("%d.jpg",
// System.currentTimeMillis()), 0);
// Or write to s d card
File mFolder;
mFolder = new File("/sdcard/Spy/");
if (!mFolder.exists()) {
mFolder.mkdir();
}
outStream = new FileOutputStream(String.format(
"/sdcard/Spy/Image_%d.jpg", System.currentTimeMillis()));
outStream.write(data);
outStream.close();
Log.d(TAG, "onPictureTaken - wrote bytes: " + data.length);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
}
Log.d(TAG, "onPictureTaken - jpeg");
}
};
}
No Logcat because not getting any error. Service is also running after taking picture. What I am doing wrong?