Android Show Video在同一屏幕上捕获预览

时间:2015-11-17 11:28:06

标签: android android-studio

我想在Android屏幕上同时显示和录制视频。但是我希望相机不是全屏而是打开屏幕的一半区域而另一半打开一些按钮。

我用谷歌搜索了它,但一直找不到任何帮助。如何在屏幕的半个区域(垂直/水平)上从相机预览。 使用Android Studio。最低SDK“10”。

1 个答案:

答案 0 :(得分:0)

为了不扭曲视频宽高比,您可以使用以下方法:创建全尺寸相机预览,然后用一些稳固的布局覆盖屏幕的后半部分。像这样:

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

    <FrameLayout
        android:id="@+id/camera_preview"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentBottom="true"
        android:orientation="vertical"
        android:weightSum="100">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="50">

            <!-- Layout for controls right on camera preview -->

        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="50"
            android:background="#000">

            <!-- Layout for other controls on your screen -->

        </LinearLayout>

    </LinearLayout>

</RelativeLayout>

希望有帮助=)