Android 相机在某些设备中得到美化

发布于 2024-10-11 03:01:25 字数 341 浏览 2 评论 0原文

我是 Android 新手,我尝试了相机 API 教程。该教程运行良好。当我使用 HTCdesire 时,我可以看到纵向和横向的相机视图,但当我使用 Samsung Galaxy 时,我只能看到横向视图的相机视图。我也尝试使用以下代码来旋转相机视图......

        Camera.Parameters parameters = camera.getParameters();                        
        parameters.setRotation(90);

然后相机无法按预期工作。 (屏幕分成 4 个且不清晰)。 有人对这个问题有想法吗? 谢谢。

Im new to Android and I tried a tutorial for camera API. The tutorial works fine. When I use HTC desire I can see the camera view in both portrait and landscape, but when I use Samsung Galaxy I get a the camera view only in a landscaped view. I tried the following code to rotate the camera view as well..

        Camera.Parameters parameters = camera.getParameters();                        
        parameters.setRotation(90);

then the camera doesn't work as expected. (screen splits into 4 and not clear).
Does anyone have an idea for this issue ?
Thanks.

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

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

发布评论

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

评论(1

彡翼 2024-10-18 03:01:25

三星相机应用程序将按照三星的预期运行。不幸的是,您将无法更改其他供应商的应用程序行为,除非该供应商接受此类更改。

The Samsung camera app will work as Samsung intended it to. Unfortunately, you won't be able to change another vendor's app behavior unless it was made to accept such changes.

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