TestCamera02Activity.java
[sourcecode language=”css”]
package test.testcamera02;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.OutputStream;
import android.app.Activity;
import android.content.ContentValues;
import android.graphics.PixelFormat;
import android.hardware.Camera;
import android.hardware.Camera.AutoFocusCallback;
import android.hardware.Camera.Parameters;
import android.hardware.Camera.PictureCallback;
import android.hardware.Camera.ShutterCallback;
import android.net.Uri;
import android.os.Bundle;
import android.provider.MediaStore.Images.Media;
import android.view.LayoutInflater;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.view.View;
import android.view.ViewGroup.LayoutParams;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.Toast;
public class TestCamera02Activity extends Activity implements SurfaceHolder.Callback{
Button buttonTakePicture;
Button buttonFlash;
Parameters parameters;
Camera camera;
SurfaceView surfaceView;
SurfaceHolder surfaceHolder;
boolean previewing = false;
LayoutInflater controlInflater = null;
String stringPath = "/sdcard/samplevideo.3gp";
final int RESULT_SAVEIMAGE = 0;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
initCamera();
initTakePicture();
initFocus();
initFlash();
}
//———————————————————–
private void initCamera(){
getWindow().setFormat(PixelFormat.UNKNOWN);
surfaceView = (SurfaceView)findViewById(R.id.surfaceView1);
surfaceHolder = surfaceView.getHolder();
surfaceHolder.addCallback(this);
surfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
controlInflater = LayoutInflater.from(getBaseContext());
View viewControl = controlInflater.inflate(R.layout.control, null);
LayoutParams layoutParamsControl
= new LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.FILL_PARENT);
this.addContentView(viewControl, layoutParamsControl);
}
public void surfaceChanged(SurfaceHolder holder, int format, int width,
int height) {
// TODO Auto-generated method stub
if(previewing){
camera.stopPreview();
previewing = false;
}
if (camera != null){
try {
camera.setPreviewDisplay(surfaceHolder);
camera.startPreview();
previewing = true;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public void surfaceCreated(SurfaceHolder holder) {
// TODO Auto-generated method stub
camera = Camera.open();
}
public void surfaceDestroyed(SurfaceHolder holder) {
// TODO Auto-generated method stub
camera.stopPreview();
camera.release();
camera = null;
previewing = false;
}
//———————————————————–
private void initTakePicture(){
buttonTakePicture = (Button)findViewById(R.id.takepicture);
buttonTakePicture.setOnClickListener(TakePictureClickListener);
}
private Button.OnClickListener TakePictureClickListener = new Button.OnClickListener(){
// @Override
public void onClick(View v) {
camera.takePicture(myShutterCallback,
myPictureCallback_RAW, myPictureCallback_JPG);
}
};
private ShutterCallback myShutterCallback = new ShutterCallback(){
//@Override
public void onShutter() {
// TODO Auto-generated method stub
}};
private PictureCallback myPictureCallback_RAW = new PictureCallback(){
//@Override
public void onPictureTaken(byte[] arg0, Camera arg1) {
// TODO Auto-generated method stub
}};
private PictureCallback myPictureCallback_JPG = new PictureCallback(){
// @Override
public void onPictureTaken(byte[] arg0, Camera arg1) {
// TODO Auto-generated method stub
Uri uriTarget = getContentResolver().insert(Media.EXTERNAL_CONTENT_URI, new ContentValues());
OutputStream imageFileOS;
try {
imageFileOS = getContentResolver().openOutputStream(uriTarget);
imageFileOS.write(arg0);
imageFileOS.flush();
imageFileOS.close();
Toast.makeText(TestCamera02Activity.this,
"Image saved: " + uriTarget.toString(),
Toast.LENGTH_LONG).show();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
camera.startPreview();
}
};
//———————————————————–
private void initFocus(){
LinearLayout layoutBackground = (LinearLayout)findViewById(R.id.background);
layoutBackground.setOnClickListener(BackgroundClickListener);
}
private Button.OnClickListener BackgroundClickListener = new Button.OnClickListener(){
// @Override
public void onClick(View v) {
buttonTakePicture.setEnabled(false);
camera.autoFocus(myAutoFocusCallback);
}
};
private AutoFocusCallback myAutoFocusCallback = new AutoFocusCallback(){
//@Override
public void onAutoFocus(boolean arg0, Camera arg1) {
// TODO Auto-generated method stub
buttonTakePicture.setEnabled(true);
}
};
//———————————————————–
private void initFlash(){
buttonFlash = (Button)findViewById(R.id.takeflash);
buttonFlash.setOnClickListener(TakeFlashClickListener);
}
private Button.OnClickListener TakeFlashClickListener = new Button.OnClickListener(){
// @Override
public void onClick(View v) {
parameters = camera.getParameters();
if(buttonFlash.getText()=="flash off"){
// parameters = camera.getParameters();
parameters.setFlashMode(Parameters.FLASH_MODE_ON);
camera.setParameters(parameters);
buttonFlash.setText("flash on");
}else{
parameters.setFlashMode(Parameters.FLASH_MODE_OFF);
camera.setParameters(parameters);
buttonFlash.setText("flash off");
}
}
};
}[/sourcecode]
main.xml
[sourcecode language=”css”]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<SurfaceView
android:id="@+id/surfaceView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
[/sourcecode]
control.xml
[sourcecode language=”css”]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/background"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/takepicture"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10px"
android:text=" * Take Picture " />
<Button
android:id="@+id/takeflash"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10px"
android:text="flash off" />
</LinearLayout>
</LinearLayout>
[/sourcecode]