view_bar_code.xml 1.19 KB
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="10dp"
    android:background="@color/colorPrimary">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="@dimen/scanLayoutHeight"
        style="@style/scan_layout_style"
        android:gravity="center_vertical">

        <ImageView
            android:layout_width="25dp"
            android:layout_height="25dp"
            android:layout_marginLeft="@dimen/margin10"
            android:src="@mipmap/search"
            android:layout_gravity="left|center_vertical" />

        <EditText
            android:id="@+id/barCodeEditor"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginLeft="@dimen/scanLineMargin"
            android:layout_marginRight="@dimen/scanLineMargin"
            android:hint=""
            android:background="@null"
            android:layout_gravity="center_vertical"
            style="@style/scan_edit_style" />
    </FrameLayout>
</FrameLayout>