Android 相机在某些设备中得到美化
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
三星相机应用程序将按照三星的预期运行。不幸的是,您将无法更改其他供应商的应用程序行为,除非该供应商接受此类更改。
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.