summaryrefslogtreecommitdiff
path: root/src/com/example/rotorm/CameraActivity.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/example/rotorm/CameraActivity.java')
-rw-r--r--src/com/example/rotorm/CameraActivity.java134
1 files changed, 134 insertions, 0 deletions
diff --git a/src/com/example/rotorm/CameraActivity.java b/src/com/example/rotorm/CameraActivity.java
new file mode 100644
index 0000000..6b35995
--- /dev/null
+++ b/src/com/example/rotorm/CameraActivity.java
@@ -0,0 +1,134 @@
+package com.example.rotorm;
+
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+import java.io.IOException;
+
+import android.app.Activity;
+import android.content.Context;
+import android.hardware.Camera;
+import android.hardware.Camera.AutoFocusCallback;
+import android.hardware.Camera.PictureCallback;
+import android.hardware.Camera.ShutterCallback;
+import android.os.Bundle;
+import android.util.Log;
+import android.view.SurfaceView;
+import android.view.View;
+import android.view.View.OnClickListener;
+import android.view.View.OnLongClickListener;
+import android.view.ViewGroup.LayoutParams;
+import android.view.Window;
+import android.view.WindowManager;
+import android.widget.Button;
+import android.widget.FrameLayout;
+
+
+//why is it so hard to put an eclipse project into git
+
+public class CameraActivity extends Activity {
+ public static final String TAG = "rotorM";
+ Preview preview;
+ Button buttonClick;
+ Camera camera;
+ String fileName;
+ Activity act;
+ Context ctx;
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ ctx = this;
+ act = this;
+ requestWindowFeature(Window.FEATURE_NO_TITLE);
+ getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
+
+ setContentView(R.layout.main);
+
+ preview = new Preview(this, (SurfaceView)findViewById(R.id.surfaceView));
+ preview.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
+ ((FrameLayout) findViewById(R.id.preview)).addView(preview);
+ preview.setKeepScreenOn(true);
+
+ buttonClick = (Button) findViewById(R.id.buttonClick);
+
+ buttonClick.setOnClickListener(new OnClickListener() {
+ public void onClick(View v) {
+ // preview.camera.takePicture(shutterCallback, rawCallback, jpegCallback);
+ camera.takePicture(shutterCallback, rawCallback, jpegCallback);
+ }
+ });
+
+ buttonClick.setOnLongClickListener(new OnLongClickListener(){
+ @Override
+ public boolean onLongClick(View arg0) {
+ camera.autoFocus(new AutoFocusCallback(){
+ @Override
+ public void onAutoFocus(boolean arg0, Camera arg1) {
+ //camera.takePicture(shutterCallback, rawCallback, jpegCallback);
+ }
+ });
+ return true;
+ }
+ });
+ }
+
+ @Override
+ protected void onResume() {
+ super.onResume();
+ // preview.camera = Camera.open();
+ camera = Camera.open();
+ camera.startPreview();
+ preview.setCamera(camera);
+ }
+
+ @Override
+ protected void onPause() {
+ if(camera != null) {
+ camera.stopPreview();
+ preview.setCamera(null);
+ camera.release();
+ camera = null;
+ }
+ super.onPause();
+ }
+
+ private void resetCam() {
+ camera.startPreview();
+ preview.setCamera(camera);
+ }
+
+ ShutterCallback shutterCallback = new ShutterCallback() {
+ public void onShutter() {
+ // Log.d(TAG, "onShutter'd");
+ }
+ };
+
+ PictureCallback rawCallback = new PictureCallback() {
+ public void onPictureTaken(byte[] data, Camera camera) {
+ // Log.d(TAG, "onPictureTaken - raw");
+ }
+ };
+
+ PictureCallback jpegCallback = new PictureCallback() {
+ public void onPictureTaken(byte[] data, Camera camera) {
+ FileOutputStream outStream = null;
+ try {
+ // Write to SD Card
+ fileName = String.format("/sdcard/camtest/%d.jpg", System.currentTimeMillis());
+ outStream = new FileOutputStream(fileName);
+ outStream.write(data);
+ outStream.close();
+ Log.d(TAG, "onPictureTaken - wrote bytes: " + data.length);
+
+ resetCam();
+
+ } catch (FileNotFoundException e) {
+ e.printStackTrace();
+ } catch (IOException e) {
+ e.printStackTrace();
+ } finally {
+ }
+ Log.d(TAG, "onPictureTaken - jpeg");
+ }
+ };
+}