Android相机活动未启动

时间:2012-04-18 20:09:32

标签: android android-intent android-camera android-camera-intent

这是我的简单Android相机应用程序代码的一部分,

public class CameraView extends Activity implements Callback, OnClickListener {


static final int FOTO_MODE = 0;
private static final String TAG = "CameraTest";
Camera mCamera;
boolean mPreviewRunning = false;
private Context mContext = this;

public void onCreate(Bundle icicle) {
    super.onCreate(icicle);

    Log.e(TAG, "onCreate");

    Bundle extras = getIntent().getExtras();

    getWindow().setFormat(PixelFormat.TRANSLUCENT);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setContentView(R.layout.main);
    mSurfaceView = (SurfaceView) findViewById(R.id.surface_camera);
    mSurfaceView.setOnClickListener(this);
    mSurfaceHolder = mSurfaceView.getHolder();
    mSurfaceHolder.addCallback(this);
    mSurfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
}

@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
    super.onRestoreInstanceState(savedInstanceState);
}

Camera.PictureCallback mPictureCallback = new Camera.PictureCallback() {
    public void onPictureTaken(byte[] imageData, Camera c) {

        if (imageData != null) {

            Intent mIntent = new Intent();

            StoreByteImage(mContext, imageData, 50,
                    "ImageName");
            mCamera.startPreview();

            setResult(FOTO_MODE, mIntent);
            finish();

        }
    }
};







public void onClick(View arg0) {

    mCamera.takePicture(null, mPictureCallback, mPictureCallback);

}

但是当我运行程序时,它会在下一行中给出空指针异常

mSurfaceView.setOnClickListener(this);

我不明白这个问题。你们能澄清一下吗?

2 个答案:

答案 0 :(得分:0)

NullPointerException表示mSurfaceView为null

在添加OnClickListener

之前,请尝试添加此代码
if (null == mSurfaceView)
  Log.e(TAG, "mSurfaceView is NULL!");
else
  Log.e(TAG, 'mSurfaceView IS OKAY!");

答案 1 :(得分:0)

mSurfaceView = (SurfaceView) findViewById(R.id.surface_camera);

返回null。空指针异常是因为您尝试访问的指针为空。

See findViewById API here