本文介绍了如何自定义surfaceview相机和拍摄的图像传递到另一个活动在android系统?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建自定义的摄像机,Surfaceview和相机工作正常,但拍摄的图像不传送到另一个活动。我怎样才能做到这一点?任何一个可以帮助我。

I have Created Customized Camera with Surfaceview and camera is working , but the captured image is not passing to an another activity. how can i do this? Any one help me.

推荐答案

试试这个它会工作:

Intent i = new Intent(CameraCapture.this, SelectService.class);
i.putExtra("filepath", "/mnt/sdcard/projectname_temp/myPicName.jpg");
startActivity(i);

这篇关于如何自定义surfaceview相机和拍摄的图像传递到另一个活动在android系统?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 02:42