我有一个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,我无法从intent返回任何数据。我想获取保存视频的文件的Uri但我不知道如何能够这样做,因为使用后退按钮是从应用程序返回的唯一方法。
我之前使用以下代码录制2D视频:
Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);
startActivityForResult(takeVideoIntent, ACTION_TAKE_VIDEO);
录制视频后会弹出一个对话框,您可以在其中选择“确定”返回应用程序并获取onActivityResult中的文件URI。
有没有办法启动3D录像机,以便我可以得到结果?
任何帮助或建议将不胜感激?感谢
答案 0 :(得分: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>
答案 1 :(得分:0)
我找到了合适的解决方案。我在调用startActivityForResult之前以毫秒为单位获取当前时间,然后在onActivityResult中获取当前时间。我知道3D录像机保存视频的目录,所以我遍历目录中的文件并检查每个文件的最后修改时间。如果上次修改时间介于使用3D录制器应用程序的开始和结束时间之间,我知道这是录制的视频。