我正在开发一个Android应用程序。在这我必须实现相机功能。当我点击按钮它应该开始,当我捕获图像时,它应该回到主应用程序与该图像。我怎么能实现这一点?任何帮助将不胜感激。
答案 0 :(得分:0)
在onClick()
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
File dir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM);
File output = new File(dir,captureimage.png");
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT,Uri.fromFile(output));
String path = output.getAbsolutePath(); <---------here you will get file path also
startActivityForResult(cameraIntent, TAKE_PHOTO);