Monodroid - 绘制叠加层并将按钮放在相机预览上

时间:2012-01-12 04:07:16

标签: android xamarin.android

从此示例开始:https://github.com/xamarin/monodroid-samples/blob/master/ApiDemo/Graphics/CameraPreview.cs

如何在预览中添加取景器(只是一个矩形)和一个按钮?

谢谢!

1 个答案:

答案 0 :(得分:3)

你可以像这样使用FrameLayout

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

        <android.view.SurfaceView xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/preview"
          android:layout_width="match_parent"
          android:layout_height="match_parent">
        </android.view.SurfaceView>

           <RelativeLayout  android:layout_width="fill_parent" 
            android:layout_height="60dp" 
android:background="#FFFFFF" android:layout_alignParentBottom="true">

                <ImageView android:scaleType="centerCrop" android:src="@drawable/some_drawable" android:layout_centerInParent="true" android:clickable="true"
                       android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/my_button"/>
        </RelativeLayout>
    </FrameLayout>

FrameLayout中包装所有内容是在SurfaceView之上简单堆叠视图的一种方法。使用类似的方法添加取景器。