使用Android MediaRecorder通过叠加录制相机预览

时间:2011-06-20 16:09:21

标签: android android-camera

我们需要一些关于“如何将视频与叠加图像一起录制?”的帮助。

这是布局文件:

<RelativeLayout
    ......
    ......
    >
    <SurfaceView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/Preview"
        />      
    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/TemplateFrame" 
        android:background="@drawable/template04"
        >       
        <DigitalClock 
            android:id="@+id/digitalClock" 
            android:layout_width="wrap_content" 
            android:text="DigitalClock" 
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="5dp"
            > 
        </DigitalClock>                                   
    </RelativeLayout>
    <RelativeLayout
        ......
        ......
        >                   
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentBottom="true"
            android:background="@drawable/capture_button"
            android:id="@+id/btnCapture"
            />      
    </RelativeLayout>
</RelativeLayout>

WHERE,

"@drawable/template04" is a transparent PNG file. 

请告诉我们您的意见。

此致

0 个答案:

没有答案