SurfaceView Android 旋转上的相机

发布于 2024-10-31 17:55:39 字数 227 浏览 0 评论 0原文

我正在开发一个带有相机的应用程序,我使用 SurfaceView 来预览相机,所以当我开始预览时,相机旋转 90 度或类似的东西,它是横向的,但我拿着手机是纵向的。

我怎样才能让它以正常位置启动。我拍摄的照片是风景照片。

parameters.set("orientation", "landscape");
parameters.set("rotation", 90);

I'm developing an application with camera and I use surfaceview to preview the camera, so when I start the preview the camera is rotated 90 degree or something like that it is in landscape but I hold my phone in portrait.

How can I make it start in regular position. The photos that I take are in landscape.

parameters.set("orientation", "landscape");
parameters.set("rotation", 90);

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

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

发布评论

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

评论(1

生活了然无味 2024-11-07 17:55:39

好吧,您可以将活动引用传递给 surfaceview 并通过此代码检查 surfaceCreated 方法的方向

if(yourActivity.getRequestedOrientation()==ActivityInfo.LANDSCAPE)
{

//perform you setting here

}
else if(yourActivity.getRequestedOrientation()==ActivityInfo.PORTRAIT)
{
//perform accordingly
}

well you can pass your activity reference to surfaceview and check for orientation on surfaceCreated method by this code

if(yourActivity.getRequestedOrientation()==ActivityInfo.LANDSCAPE)
{

//perform you setting here

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