如何在相机预览中添加红线

时间:2018-02-05 04:09:49

标签: android camera

我试图在我的项目安卓扫描仪中自定义我的相机,在那里我可以在相机中间放置红线并使我的背景透明。

mycurrent相机布局:

sample Image

我想这样做:

sample Image

activity_camera.xml

setup.py

我尝试复制FrameLayout但它不起作用。有没有办法用我已经拥有的FrameLayout来做呢?

1 个答案:

答案 0 :(得分:0)

通过玩视图的简单方法。

只需将下面的代码替换为layout-xml文件即可。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#1A237E"
android:orientation="vertical"
android:weightSum="1"
tools:context="com.example.administrator.myapplication.CameraTestActivity">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="20dp"
    android:layout_gravity="center"
    android:background="@android:color/transparent"
    android:orientation="horizontal"
    android:weightSum="1">

</LinearLayout>

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="right"
    android:background="#1A237E"
    android:text="Help"
    android:textColor="#ffff"
    android:textSize="15sp"
    android:textStyle="italic" />

<TextView

    android:id="@+id/textView8"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.07"
    android:text="ASEC MOBILE SCANNER"
    android:textAlignment="center"
    android:textColor="#ffff"
    android:textSize="30sp"
    android:textStyle="bold"></TextView>

<TextView
    android:id="@+id/scanText"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_weight="0.07"
    android:text="Scanning..."
    android:textAlignment="center"
    android:textColor="#ffff"
    android:textSize="30sp"></TextView>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:gravity="center">

    <FrameLayout
        android:id="@+id/cameraPreview"
        android:layout_width="294dp"
        android:layout_height="307dp" />

    <View
        android:layout_width="294dp"
        android:layout_height="1dp"
        android:layout_centerVertical="true"
        android:background="#ff0000" />

</RelativeLayout>