android:拍照相机没有“保存”/“删除”确认

时间:2013-04-30 10:24:42

标签: android android-intent camera

我想使用

在ImageView中显示从相机拍摄的图像
Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);

到目前为止这个工作正常但是在用户使用所选择的相机应用程序拍摄照片后,会出现一个对话框(可能来自应用程序),询问是否保存或删除拍摄的照片(至少在使用默认相机的Android 2.3和4.2上)应用程序)。

我想跳过这个额外的对话框并直接在ImageView中显示图像(当调用onActivityResult时),因为这意味着用户需要额外的交互步骤,这是不必要的,因为他会有可能在我的应用程序中保存或删除照片。

这是否可以使用简单的ACTION_IMAGE_CAPTURE Intent,还是需要更复杂的东西,比如Camera Preview和SurfaceView?

6 个答案:

答案 0 :(得分:15)

您可以使用SurfaceView来捕捉图像

package com.camera;

import java.io.IOException;

import android.app.Activity;
import android.content.Intent;
import android.hardware.Camera;
import android.os.Bundle;
import android.util.Log;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;

public class Camera_capture extends Activity implements SurfaceHolder.Callback {

private Camera mCamera;
private SurfaceView surfaceView;
private SurfaceHolder surfaceHolder;
private Button capture_image;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.camera_layout);
    capture_image = (Button) findViewById(R.id.capture_image);
    capture_image.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            capture();
        }
    });
    surfaceView = (SurfaceView) findViewById(R.id.surfaceview);
    surfaceHolder = surfaceView.getHolder();
    surfaceHolder.addCallback(Camera_capture.this);
    surfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
    try {
        mCamera = Camera.open();
        mCamera.setPreviewDisplay(surfaceHolder);
        mCamera.startPreview();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

private void capture() {
    mCamera.takePicture(null, null, null, new Camera.PictureCallback() {

        @Override
        public void onPictureTaken(byte[] data, Camera camera) {
            Toast.makeText(getApplicationContext(), "Picture Taken",
                    Toast.LENGTH_SHORT).show();
            Intent intent = new Intent();
            intent.putExtra("image_arr", data);
            setResult(RESULT_OK, intent);
            camera.stopPreview();
            if (camera != null) {
                camera.release();
                mCamera = null;
            }
            finish();
        }
    });
}

@Override
public void surfaceChanged(SurfaceHolder holder, int format, int width,
        int height) {
    Log.e("Surface Changed", "format   ==   " + format + ",   width  ===  "
            + width + ", height   ===    " + height);
    try {
        mCamera.setPreviewDisplay(holder);
        mCamera.startPreview();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

@Override
public void surfaceCreated(SurfaceHolder holder) {
    Log.e("Surface Created", "");
}

@Override
public void surfaceDestroyed(SurfaceHolder holder) {
    Log.e("Surface Destroyed", "");
}

@Override
protected void onPause() {
    super.onPause();
    if (mCamera != null) {
        mCamera.stopPreview();
        mCamera.release();
    }
}
}

布局文件将是

<?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/surfaceview"
    android:layout_width="fill_parent"
    android:layout_weight="100"
    android:layout_height="wrap_content" />

<Button
    android:id="@+id/capture_image"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="Capture" />

</LinearLayout>

使用Camera_capturestartActivityForResult开始此onActivityResult活动,您可以将图像显示为byte数组

byte[] image = data.getExtras().getByteArray("image_arr");

其中data是收到的数据。

使用

byte数组解码为Bitmap
Bitmap bmp = BitmapFactory.decodeByteArray(image, 0,
                    image.length);

现在设置此Bitmap


修改

由于返回byte[]时出现问题,byte[]应保存在文件中,文件的路径应发送到上一个Activity,以便该文件可以读取。

onPictureTaken()中,只需添加

即可
String PATH = "Any path to store a file";
try {
    FileOutputStream fos=new FileOutputStream(PATH);

    fos.write(data);
    fos.close();
  }
  catch (java.io.IOException e) {

  }

代替:

intent.putExtra("image_arr", data);

intent.putExtra("image_path", PATH);

并在之前Activity的{​​{1}}中接收此路径:

onActivityResult

答案 1 :(得分:6)

使用&#34; android.intent.extra.quickCapture&#34;

Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra("android.intent.extra.quickCapture",true);
if (intent.resolveActivity(getPackageManager()) != null) {
    startActivityForResult(intent, REQUEST_IMAGE_CAPTURE);
}

答案 2 :(得分:2)

如果您的图片被旋转,您可以使用:

mCamera.setDisplayOrientation(90);

mCamera.startPreview();

答案 3 :(得分:1)

您无法使用默认意图执行此操作。您必须编写客户相机捕获功能,您可以使用“确定”和“取消”按钮跳过预览。

请见http://developer.android.com/guide/topics/media/camera.html#custom-camera

答案 4 :(得分:1)

您可以使用AnujMathur_07的解决方案,但如果您不想使用路径和文件,则可以在方法onPictureTaken中返回位图:

 @Override
            public void onPictureTaken(byte[] data, Camera camera) {
                Toast.makeText(getApplicationContext(), "Picture Taken",
                        Toast.LENGTH_SHORT).show();
                Intent intent = new Intent();

            Bitmap bmp = BitmapFactory.decodeByteArray(data, 0,
                    data.length);

            intent.putExtra("image", bmp);
            setResult(RESULT_OK, intent);
            camera.stopPreview();
            if (camera != null) {
                camera.release();
                mCamera = null;
            }
            finish();
        }

在方法onActivityResult中,您可以获得位图:

 Bundle extras = data.getExtras();
 Bitmap imageBitmap = (Bitmap) extras.get("image");

答案 5 :(得分:-2)

使用MediaStore.EXTRA_OUTPUT参数为您的相机应用程序运行意图

intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri);