为什么在不同的 Android 手机上正常拍照这么困难?

发布于 2024-11-25 10:55:32 字数 720 浏览 0 评论 0原文

我做了一个程序,主要功能是使用API​​来拍照并将它们存储在我给的路径中。

但与我在模拟器或带有 Google 原始 ROM 的手机上进行测试时相比,在不同的手机上效果并不理想。

理论上来说。如果我给出 Intent 的路径,照片不应出现在手机的默认图库中,但在 MOTO Defy 上,照片存储在我的路径和默认图像目录中。在三星上,当从相机 Intent 返回时,我的应用程序会无声地崩溃。仅在某些手机上,我可以通过按相机活动中的菜单按钮来调出菜单。甚至其中一些将照片保存为我在“相机活动”设置菜单中设置的尺寸。

我认为这是因为制造商在他们的手机上定制了 ROM,因此相机活动的行为有所不同。

有人知道如何避免这种情况吗?或者有没有其他方法可以不按意图“android.media.action.IMAGE_CAPTURE”来拍照?

以下是我如何拍照的代码。

    Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
    intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(getpath()+"_.jpg")));
    intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
    startActivityForResult(intent, 0);

I made a program whose major function is use API to take photos and store them in the path I gave.

But things don't come out right on different phones comparing to that when I tested on the emulator or phone with Google's origin ROM.

Theoretically. If I gave a path to the Intent, the photo shouldn't appear in the phone's default gallery, but on MOTO Defy the photos were stored in both my path and default image directory. And on Samsung, my app crashes silently when return from the camera Intent. And only on some phones I can bring up menu by pressing the menu button in the Camera Activity. And even some of them saves photo as the size I set in the Camera Activity's setting menu.

I think this is because the manufacturers customized the ROM on their phones so the Camera Activity acts differently.

Anyone know how to avoid this situation? Or is there any other way to take photos not by the intent "android.media.action.IMAGE_CAPTURE" ?

The following is the code how I take photos.

    Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
    intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(getpath()+"_.jpg")));
    intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1);
    startActivityForResult(intent, 0);

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

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

发布评论

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

评论(2

携君以终年 2024-12-02 10:55:32

当我尝试时,@balban shah 提供的方法仍然有效。

最后我发现这是因为不同的厂商定制了他们的Rom,包括相机应用程序,所以最好的方法是不要调用默认的相机应用程序,而是我们可以编写一个使用hardware.camera的活动来拍照。互联网上也有很多这方面的例子。

The way that @balban shah offered worked all the same when I tried.

Finally I found that's because different manufacturers customize their Rom, including the Camera app, so the best way is not to call the default camera app, instead we can write a activity use hardware.camera to take picture. There are a lot of examples for this around the Internet too.

看春风乍起 2024-12-02 10:55:32

尝试使用此代码保持其他设置相同以进行照片拍摄

Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(origImageFile));
startActivityForResult(cameraIntent, 0);

try to use this code keep other setting same for photo capture

Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(origImageFile));
startActivityForResult(cameraIntent, 0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文