2012-11-06 102 views
3

我已經在Android的ApiDemos應用程序中實現了相機預覽。 事情是,我想要我的活動,其中預覽顯示鎖定到肖像。所以我將screenOrientation設置爲清單中的肖像。Android人像鎖定相機預覽

'getOptimalPreviewSize'方法爲預覽返回相反的值,這意味着當需要返回480x720時,該方法返回720x480,並且我的活動的FrameLayout中有一個小的預覽(這不是我想要的,我希望它匹配父(是,佈局與 「match_parent」 定義)

我想:

  • setDisplayOrientation(90);
  • parameters.set( 「方向」,「肖像「);
  • parameters.set(「rotation」,「90」);

似乎沒有什麼幫助。

爲什麼我無法在縱向模式下顯示相機預覽?鎖定。

感謝

+1

http://stackoverflow.com/questions/10660598/android-camera-preview-orientation-in-portrait-mode。這裏有一個類似於你的要求的鏈接。請閱讀註解以接受答案。 – Raghunandan

回答

2

這裏是相機對SurfaceView肖像預覽的工作示例:

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 

    setContentView(R.layout.main); 

    SurfaceView surfaceView = (SurfaceView) findViewById(R.id.surface); 
    surfaceView.getHolder().addCallback(new SurfaceHolder.Callback() { 

     private Camera camera; 

     @Override 
     public void surfaceCreated(SurfaceHolder holder) { 
      try { 
       camera = Camera.open(); 
       camera.setPreviewDisplay(holder); 
       camera.setDisplayOrientation(90); 
       camera.startPreview(); 
      } catch (IOException e) { 
       Log.e(TAG, "Error", e); 
      } 
     } 

     @Override 
     public void surfaceDestroyed(SurfaceHolder holder) { 
      camera.stopPreview(); 
     } 

     @Override 
     public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { 
     } 
    }); 
} 

用下面的佈局文件:

<?xml version="1.0" encoding="utf-8"?> 
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <SurfaceView 
     android:id="@+id/surface" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" /> 

</FrameLayout> 
+0

這樣設置contentView就好了,但是如果你想從XML設置它呢?我認爲佈局的寬度和高度會再次造成問題:/ – user584513

+0

也可以使用XML佈局文件(請參閱我的編輯) – fiddler

+0

您是否可以檢查這是否可以使用自定義View而不是SurfaceView?(正如樣本中的擴展ViewGroup一樣)實現SurfaceHolder.Callback並鎖定屏幕方向\t \t setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT);?謝謝! – user584513

-1

嘗試setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT);

那會將活動鎖定到該方向。

從谷歌文檔下面的代碼:

public static void setCameraDisplayOrientation(Activity activity, 
    int cameraId, android.hardware.Camera camera) { 
android.hardware.Camera.CameraInfo info = 
     new android.hardware.Camera.CameraInfo(); 
android.hardware.Camera.getCameraInfo(cameraId, info); 
int rotation = activity.getWindowManager().getDefaultDisplay() 
     .getRotation(); 
int degrees = 0; 
switch (rotation) { 
    case Surface.ROTATION_0: degrees = 0; break; 
    case Surface.ROTATION_90: degrees = 90; break; 
    case Surface.ROTATION_180: degrees = 180; break; 
    case Surface.ROTATION_270: degrees = 270; break; 
} 

int result; 
if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) { 
    result = (info.orientation + degrees) % 360; 
    result = (360 - result) % 360; // compensate the mirror 
} else { // back-facing 
    result = (info.orientation - degrees + 360) % 360; 
} 
camera.setDisplayOrientation(result); 
} 

這將正確設置相機和預覽的方向。

+0

是不是setRequestedOrientation相同設置Android Manifest screenOrientation?如果是的話,我已經把它設置爲PORTRAIT了。 – user584513

+0

請!這不是對這個問題的回答。 – swiftBoy