0

我有一个 lg g-slate,它有两个后置摄像头来拍摄立体 (3D) 图片/视频。在我的应用程序中,我试图调用设备上预装的 3D 录像机应用程序。我能够通过以下方式成功启动该应用程序:

    Intent i;
    PackageManager manager = getPackageManager();
    try {
        i = manager.getLaunchIntentForPackage("com.lge.stereo.camcorder");
        if (i == null)
            throw new PackageManager.NameNotFoundException();
        i.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
        startActivityForResult(i, ACTION_TAKE_VIDEO);
    } catch (PackageManager.NameNotFoundException e) {

使用应用程序录制视频后,除了使用返回按钮外,无法从应用程序返回。因此,在 onActivityResult() 中,结果代码是 RESULT_CANCELLED ,我无法获取从意图返回的任何数据。我想获取保存视频的文件的 Uri,但我不确定我将如何做到这一点,因为使用后退按钮是从应用程序返回的唯一方法。

我之前使用以下代码录制 2D 视频:

Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
startActivityForResult(takeVideoIntent, ACTION_TAKE_VIDEO);

录制视频后会弹出一个对话框,您可以在其中选择“确定”返回您的应用程序并在 onActivityResult 中获取文件 URI。

有什么方法可以启动 3D 录像机,以便我可以得到结果?

任何帮助或建议将不胜感激?谢谢

4

2 回答 2

0

在此处输入图像描述仅在自定义布局上在您的应用程序中打开相机应用程序。您可以在其中有两个按钮用于保存和丢弃视频。当用户按下保存视频时,将其保存在预定义的位置,您将了解视频的路径,因为您已经自己定义了它,当用户按下取消视频时,丢弃该位置并取消视频或只是覆盖后退按钮功能。

例如

在您的 onCreate() 方法中,获取相机实例

private Camera myCamera;
// Get Camera for preview
myCamera = getCameraInstance();


private Camera getCameraInstance() {
        // TODO Auto-generated method stub
        Camera c = null;
        try {
            // attempt to get a Camera instance
            c = Camera.open();
        } catch (Exception e) {
            // Camera is not available (in use or does not exist)
        }
        // returns null if camera is unavailable
        return c;
    }

现在为相机创建表面视图

         private MyCameraSurfaceView myCameraSurfaceView;

        myCameraSurfaceView = new MyCameraSurfaceView(this, myCamera);
        FrameLayout myCameraPreview = (FrameLayout) findViewById(R.id.videoview);
        myCameraPreview.addView(myCameraSurfaceView);

        myButton = (Button) findViewById(R.id.mybutton);
        myButton.setOnClickListener(myButtonOnClickListener);

        flashOff = (RadioButton) findViewById(R.id.flashoff);
        flashTorch = (RadioButton) findViewById(R.id.flashtorch);

并像这样创建您的布局

<?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" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal" >

        <FrameLayout
            android:id="@+id/videoview"
            android:layout_width="720px"
            android:layout_height="480px" />

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" >

            <Button
                android:id="@+id/mybutton"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="REC"
                android:textSize="12dp" />

            <RadioGroup
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical" >

                <RadioButton
                    android:id="@+id/flashoff"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:checked="true"
                    android:text="OFF"
                    android:textSize="8dp" />

                <RadioButton
                    android:id="@+id/flashtorch"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Torch"
                    android:textSize="8dp" />
            </RadioGroup>

            <Button
                android:layout_marginTop="10dp"
                android:id="@+id/btn_next"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="NEXT"
                android:textSize="12dp" />


        </LinearLayout>
    </LinearLayout>

</LinearLayout>
于 2013-11-01T05:23:18.190 回答
0

好吧,我找到了一个合适的解决方案。我在调用 startActivityForResult 之前以毫秒为单位获取当前时间,然后在 onActivityResult 中获取当前时间。我知道 3D 录像机保存视频的目录,所以我遍历目录中的文件并检查每个文件的最后修改时间。如果上次修改时间介于使用 3D 录像机应用程序的开始时间和结束时间之间,我知道这是录制的视频。

于 2013-11-01T07:39:17.253 回答