Android 相机翻转
我已经关注 这个例子。然而,当我将其移植到手机上(为了使用相机)时,预览会向左翻转 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我之前也遇到过同样的问题。我刚刚添加了一个参数来将视图旋转 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: