Android 相机翻转

发布于 2024-10-19 08:44:46 字数 892 浏览 2 评论 0原文

我已经关注 这个例子。然而,当我将其移植到手机上(为了使用相机)时,预览会向左翻转 90 度。除此之外它工作正常。

我的问题是:如何“取消翻转”预览

这是我的布局文件的内容:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal">   
        <android.view.SurfaceView xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/preview"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
    </android.view.SurfaceView> 
</LinearLayout>

另外,当我尝试自己转动手机时,它保持“横向”模式。

提前致谢!

I have followed this example. However, when I port it to my phone (in order to use the camera), the preview is flipped 90 degrees to the left. Other than that it is working fine.

My question is then: how do I "unflip" the preview?

Here is the content of my layout file:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal">   
        <android.view.SurfaceView xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/preview"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
    </android.view.SurfaceView> 
</LinearLayout>

Also, when I try to turn the phone myself it stays in 'landscape' mode.

Thanks in advance!

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

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

发布评论

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

评论(1

涫野音 2024-10-26 08:44:46

我之前也遇到过同样的问题。我刚刚添加了一个参数来将视图旋转 90 度。将此参数添加到表面更改函数中:

parameters.setRotation(90); 

I had the same issue before. I just added a parameter to rotate the view 90. Add this parameter to the surface changed function:

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