Same crashing problem:
Camera.PictureCallback mPictureCallback = new
Camera.PictureCallback() {
public void onPictureTaken(byte[] data, Camera camera) {
startImageProcess(data);
}
};
public void startImageProcess(byte[] data)
You added a Bundle to the Intent so you should get a Bundle from the
the Intent and then get the array from the Bundle.
put: Intent putExtra(String name, Bundle value)
get: Bundle getExtras()
or
put: Intent putExtra(String name, byte[] value)
get: byte[] getByteArrayExtra(Str
2 matches
Mail list logo