Android:如何创建自定义相机预览小部件?

7
我将尝试开发一个自定义相机预览小部件,希望能够占据整个屏幕并在其上绘制一些按钮。
我已经试过通过以下方式创建自定义小部件:
import java.io.IOException;

import android.content.Context;
import android.hardware.Camera;
import android.view.SurfaceHolder;
import android.view.SurfaceView;

class CapturePreview extends SurfaceView implements SurfaceHolder.Callback {
    SurfaceHolder mHolder;
    Camera mCamera;

CapturePreview(Context context) {
    super(context);
    // Install a SurfaceHolder.Callback so we get notified when the
    // underlying surface is created and destroyed.
    mHolder = getHolder();
    mHolder.addCallback(this);
    mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
}

public void surfaceCreated(SurfaceHolder holder) {
    // The Surface has been created, acquire the camera and tell it where
    // to draw.
    mCamera = Camera.open();
    try {
       mCamera.setPreviewDisplay(holder);
    } catch (IOException exception) {
        mCamera.release();
        mCamera = null;
        // TODO: add more exception handling logic here
    }
}

public void surfaceDestroyed(SurfaceHolder holder) {
    // Surface will be destroyed when we return, so stop the preview.
    // Because the CameraDevice object is not a shared resource, it's very
    // important to release it when the activity is paused.
    mCamera.stopPreview();
    mCamera = null;
}

public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) {
    // Now that the size is known, set up the camera parameters and begin
    // the preview.
    Camera.Parameters parameters = mCamera.getParameters();
    parameters.setPreviewSize(w, h);
    mCamera.setParameters(parameters);
    mCamera.startPreview();
}

}

并按以下方式修改了main.xml文件:

<RelativeLayout android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/RelativeLayout">
<dev.video.client.CapturePreview android:id="@+id/capturePreview" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
</RelativeLayout>

在Activity类中,我尝试按照以下方式绑定小部件:
private CapturePreview mPreview;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setFullscreen();

    setContentView(R.layout.main);

    this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

    //mPreview = new CapturePreview(this);
    //setContentView(mPreview);

    mPreview = (CapturePreview)this.findViewById(R.id.capturePreview);
}

每次我尝试调试这个应用程序时,都会收到错误消息,但我还没有找出可能的原因。

非常感谢您对此问题的任何帮助。

谢谢!

2个回答

4
要使其正常工作,您需要在SurfaceView中创建以下构造函数: CapturePreview(Context context, AttributeSet attrs) 如您所知,在Java中,构造函数不会从其超类继承,但当您在XML文件中使用该组件时(而不是以编程方式定义GUI),Android尝试调用此构造函数。这当然行不通,因此会出现错误消息,我认为应该更加清晰明了。 AttributeSet 包含XML声明中提到的每个属性,因此如果您的组件具有自定义属性,则可以在构造函数中检索并对其采取行动。

-1
您可以在相应的视图上实现onTouchListener()。每当您点击表面时,Android系统会自动将您带到onTouchListener()方法中。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接