更改SurfaceView的大小

时间:2011-10-09 10:16:40

标签: android android-layout android-camera

我试图仅使用屏幕的一小部分来显示相机的视图。

这是我的XML文件。

<?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:background="@drawable/backimage" android:orientation="horizontal">

<android.view.SurfaceView android:id="@+id/preview"
  android:layout_width="fill_parent" android:layout_height="100dp"/>
</LinearLayout>

此代码在我的手机上运行,​​但是,我从相机中看不到任何内容。

我在使用此XML时看到了相机的输入

<android.view.SurfaceView android:id="@+id/preview"
  android:layout_width="fill_parent" android:layout_height="fill_parent"/>
</LinearLayout>

我应该使用其他类型的物体来显示相机的较小视图吗?

0 个答案:

没有答案