Android - 拍摄照片

发布于 2024-09-14 04:22:24 字数 512 浏览 11 评论 0原文

在我的应用程序中,我必须实现本机相机活动,我必须启动相机并拍照。

详细, 我的应用程序包含一个 TextView(顶部)来显示活动名称和一个 Button(底部),在屏幕的中间区域,应该查看相机预览。当用户单击该按钮时,应该单击 Snap 并显示它进入另一个活动的 Imageview。

我知道使用以下方法:

Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE );
intent.putExtra( MediaStore.EXTRA_OUTPUT, outputFileUri );
startActivityForResult( intent, 0 );

但是如果我使用这种方法,那么我的文本视图和按钮视图不会显示。

(请注意:我正在使用 Android SDK 1.5 和 HTC Hero)

请通过任何文章、网站或 pdf 的建议来帮助我。

谢谢帕雷什

In my application, i have to implement native camera activity where i have to launch the camera and take photo.

In detail,
my application containing, One TextView (at top) to display activity name and one Button (At bottom) and in Middle Area of the screen, Camera preview should be viewed..When user click on that Button, Snaps should be clicked and display it into Imageview of another activity.

I know that the following approach is used:

Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE );
intent.putExtra( MediaStore.EXTRA_OUTPUT, outputFileUri );
startActivityForResult( intent, 0 );

But this approach if i used then my textview and button view is not displayed.

(Pls note that: I am using Android SDK 1.5 with HTC Hero)

pls help me by suggestion of any article, site, or pdf.

thanx, paresh

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

も让我眼熟你 2024-09-21 04:22:24

如果您尝试使用本机相机,一旦调用本机相机,它将控制您的视图。但是,如果您想实现自己的相机,那么这样的布局是可能的。可以在此处找到一些很好的示例:

你好运!

If you are trying to use the native camera, once the native camera is called it will control your view. However if you want to implement your own camera, then such a layout would be possible. Some good examples can be found here:

Goodluck!

拥抱我好吗 2024-09-21 04:22:24

所有说明均位于 android.hardware.Camera 的 JavaDoc http:// developer.android.com/reference/android/hardware/Camera.html

  1. 通过 open() 获取 Camera 实例。
  2. 使用 getParameters() 获取现有(默认)设置。
  3. 如有必要,修改返回的Camera.Parameters对象并调用setParameters(Camera.Parameters)。
  4. 如果需要,请调用 setDisplayOrientation(int)。
  5. 重要提示:将完全初始化的 SurfaceHolder 传递给 setPreviewDisplay(SurfaceHolder)。如果没有表面,相机将无法启动预览。
  6. 重要提示:调用 startPreview() 开始更新预览表面。拍照之前必须先开始预览。
  7. 当您需要时,调用 takePicture(Camera.ShutterCallback, Camera.PictureCallback, Camera.PictureCallback, Camera.PictureCallback) 来拍摄照片。等待回调提供实际的图像数据。
  8. 拍照后,预览显示将停止。要拍摄更多照片,请先再次调用 startPreview()。
  9. 调用 stopPreview() 停止更新预览表面。
  10. 重要提示:调用release()来释放相机以供其他应用程序使用。应用程序应在 onPause() 中立即释放相机(并在 onResume() 中重新打开()它)。

    SurfaceHolder 通常使用 SurfaceView

    实现

All the instructions are at the JavaDoc of android.hardware.Camera at http://developer.android.com/reference/android/hardware/Camera.html:

  1. Obtain an instance of Camera from open().
  2. Get existing (default) settings with getParameters().
  3. If necessary, modify the returned Camera.Parameters object and call setParameters(Camera.Parameters).
  4. If desired, call setDisplayOrientation(int).
  5. Important: Pass a fully initialized SurfaceHolder to setPreviewDisplay(SurfaceHolder). Without a surface, the camera will be unable to start the preview.
  6. Important: Call startPreview() to start updating the preview surface. Preview must be started before you can take a picture.
  7. When you want, call takePicture(Camera.ShutterCallback, Camera.PictureCallback, Camera.PictureCallback, Camera.PictureCallback) to capture a photo. Wait for the callbacks to provide the actual image data.
  8. After taking a picture, preview display will have stopped. To take more photos, call startPreview() again first.
  9. Call stopPreview() to stop updating the preview surface.
  10. Important: Call release() to release the camera for use by other applications. Applications should release the camera immediately in onPause() (and re-open() it in onResume()).

    The SurfaceHolder is ususally implemented using SurfaceView

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文