我遵循this示例。但是,当我将其移植到手机上时(为了使用相机),预览会向左翻转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>
此外,当我尝试自己打开手机时,它会处于“风景”模式。
提前致谢!
答案 0 :(得分:1)
之前我遇到过同样的问题。我刚刚添加了一个参数来旋转视图90.将此参数添加到曲面更改函数:
parameters.setRotation(90);