5

我能够使用相机拍照的唯一代码是从活动中运行的。我相当确定可以从服务中或从服务启动的 AsyncTask 中拍摄照片。

在我看来,相机 API 需要一个必须绑定到 UI 的 SurfaceView。也许我错了。有没有人编写过可以从服务中获取照片的代码?

4

3 回答 3

5

WindowManager在Android中使用是可能的。

https://stackoverflow.com/a/10268650/3047840

我应该说是的,您需要SurfaceView拍照,但不必绑定到某个 xml 布局。您可以将其添加到WindowManager即使在服务中也可以使用的类。所以WindowManager这里打开了一个“窗口”让你在 Android 中做任何浮动效果。

具体来说,

您可以添加一个SurfaceViewWindowManager设置参数如下。

mPreview = new CameraPreview(this, mCamera, jpegCallback);
WindowManager wm = (WindowManager) this
        .getSystemService(Context.WINDOW_SERVICE);
WindowManager.LayoutParams params = new WindowManager.LayoutParams(
        WindowManager.LayoutParams.WRAP_CONTENT,
        WindowManager.LayoutParams.WRAP_CONTENT,
        WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY,
        WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH,
        PixelFormat.TRANSPARENT);

params.height = 1;
params.width = 1;

wm.addView(mPreview, params);

Android 有这个功能,而 iOS 没有。这就是为什么您可以在 Android 而不是 iOS 的主屏幕上激活 Facebook 聊天头。

从android中的广播接收器显示facebook喜欢聊天头

于 2013-11-29T11:54:22.350 回答
3

如果您仍在寻找,这里有一些更完整的代码。在服务中工作(经过测试):

private void takePhoto() {

    System.out.println( "Preparing to take photo");
    Camera camera = null;

    int cameraCount = 0;
    Camera.CameraInfo cameraInfo = new Camera.CameraInfo();
    cameraCount = Camera.getNumberOfCameras();
    for (int camIdx = 0; camIdx < cameraCount; camIdx++) {
        SystemClock.sleep(1000);

        Camera.getCameraInfo(camIdx, cameraInfo);

            try {
                camera = Camera.open(camIdx);
            } catch (RuntimeException e) {
                System.out.println("Camera not available: " + camIdx);
                camera = null;
                //e.printStackTrace();
            }
        try{
            if (null == camera) {
                System.out.println("Could not get camera instance");
            }else{
                System.out.println("Got the camera, creating the dummy surface texture");
                //SurfaceTexture dummySurfaceTextureF = new SurfaceTexture(0);
                try {
                    //camera.setPreviewTexture(dummySurfaceTextureF);
                    camera.setPreviewTexture(new SurfaceTexture(0));
                    camera.startPreview();
                } catch (Exception e) {
                    System.out.println("Could not set the surface preview texture");
                    e.printStackTrace();
                }
                camera.takePicture(null, null, new Camera.PictureCallback() {

                    @Override
                    public void onPictureTaken(byte[] data, Camera camera) {
                        File pictureFileDir = getDir();
                        if (!pictureFileDir.exists() && !pictureFileDir.mkdirs()) {
                            return;
                        }
                        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyymmddhhmmss");
                        String date = dateFormat.format(new Date());
                        String photoFile = "PictureFront_" + "_" + date + ".jpg";
                        String filename = pictureFileDir.getPath() + File.separator + photoFile;
                        File mainPicture = new File(filename);
                        addImageFile(mainPicture);

                        try {
                            FileOutputStream fos = new FileOutputStream(mainPicture);
                            fos.write(data);
                            fos.close();
                            System.out.println("image saved");
                        } catch (Exception error) {
                            System.out.println("Image could not be saved");
                        }
                        camera.release();
                    }
                });
            }
        }catch (Exception e){
            camera.release();
        }


    }
于 2014-06-04T00:19:20.400 回答
-3

我认为这是不可能的,因为相机需要预览屏幕。在此处查看类似问题

于 2013-01-11T12:17:08.143 回答