0

我有以下问题:我有一个带有摄像头和顶部的应用程序,并且图像作为叠加层。图像在 4/3 中,我得到了屏幕的最佳尺寸并绘制了图像。问题是我在尝试时看不到所有图像。我在屏幕的顶部和底部剪切了图像。问题是,如果我拍照,我会看到完美的照片

我正在使用 android sdk 8 并且相机处于横向模式。在我的三星 Galaxy S 中,叠加层和表面预览提供相同的尺寸 640:480。

我已经玩了一段时间了,我还没有找到解决方案。

这是代码。

我的xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/framecamera"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:gravity="center"
    android:padding="0dip"
    android:layout_margin="0dip"
>
<FrameLayout
    android:id="@+id/surface"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="0dip"
    android:layout_margin="0dip"
>
</FrameLayout>
<ImageButton
    android:id="@+id/button_capture"
    android:contentDescription="@string/click"
    android:text="@string/click"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center|right"
    android:background="@drawable/camera"
    android:src="@drawable/camera"
/>
</LinearLayout>

我的代码的重要部分:

setContentView(R.layout.camera);

//create an instance of Camera
mcam = getCameraInstance();
Camera.Parameters parameters=mcam.getParameters();
size=getBestPreviewSize(parameters);//gets the 4/3 size

horizontal = Bitmap.createScaledBitmap(horizontal, size.width, size.height, false);

// Create our Preview view and set it as the content of our activity.
mpreview = new CameraPreview(getBaseContext(), mcam);
FrameLayout frame = (FrameLayout) findViewById(R.id.surface);
SurfaceHolder mSurfaceHolder = mpreview.getHolder();
mSurfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);

//set our view to 4:3
ViewGroup.LayoutParams params = frame.getLayoutParams();
params.width = size.width;
params.height = size.height;
frame.setLayoutParams(params);

//add the necessary margin to the view
Display display = ((WindowManager) getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
MarginLayoutParams ps=(MarginLayoutParams )frame.getLayoutParams();
ps.topMargin = 0;
ps.bottomMargin = 0;
ps.leftMargin = (display.getWidth()-size.width)/2;//to center the overlay
frame.setLayoutParams(ps);

frame.addView(mpreview);

over = new OverlayPreview(getBaseContext(),horizontal);//inside I draw the canvas
frame.addView(over);

任何想法将不胜感激。我认为问题可能来自填充或 xml,但我不知道如何解决它。非常感谢你。

pd:对不起我的英语,不是我的母语。

4

1 回答 1

0

行!我终于找到了如何做到这一点!

我改变了这样做的方式,现在我使用和 ImageView 作为框架。

// Create our Preview view
mpreview = new CameraPreview(getBaseContext(), mcam);

FrameLayout frame = (FrameLayout) findViewById(R.id.surface);

SurfaceHolder mSurfaceHolder = mpreview.getHolder();
mSurfaceHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);

ImageView imageframe = (ImageView) findViewById(R.id.iframe);
imageframe.setImageBitmap(horizontal);

//set our view to 4:3
ViewGroup.LayoutParams params = frame.getLayoutParams();
params.width = size.width;
params.height = size.height;
frame.setLayoutParams(params); 

//add the necessary margin to the view
Display display = ((WindowManager) getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
MarginLayoutParams ps=(MarginLayoutParams)frame.getLayoutParams();
ps.topMargin = 0;
ps.bottomMargin = 0;
ps.leftMargin = (int)((display.getWidth()-size.width)/2) + 50;
ps.rightMargin = (int)((display.getWidth()-size.width)/2) + 50;
frame.setLayoutParams(ps);

frame.addView(mpreview);

我想这不是最好的解决方案,但它至少可以工作。

于 2012-09-04T12:17:09.510 回答