|
@@ -0,0 +1,90 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:innerrect="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:layout_width="fill_parent"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ >
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:id="@+id/scan_fl"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerInParent="true">
|
|
|
+ <SurfaceView
|
|
|
+ android:id="@+id/preview_view"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"/>
|
|
|
+ <RelativeLayout android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <com.uas.equipment.camera.ViewfinderView
|
|
|
+ android:id="@+id/viewfinder_view"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ innerrect:inner_height="260dp"
|
|
|
+ innerrect:inner_margintop="120dp"
|
|
|
+ innerrect:inner_scan_speed="60"
|
|
|
+ innerrect:inner_width="260dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_marginTop="400dp"
|
|
|
+ android:text="请将二维码/条形码置于扫描框内"
|
|
|
+ android:textColor="#FF8200"
|
|
|
+ android:textSize="20sp"
|
|
|
+ android:visibility="gone"
|
|
|
+ />
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/flashlight_iv"
|
|
|
+ android:layout_width="40dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_marginTop="400dp"
|
|
|
+ android:src="@drawable/ic_flashlight_off"/>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ </FrameLayout>
|
|
|
+ <!--
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@id/scan_fl"
|
|
|
+ android:text="将二维码/条码置于扫描框内,即可自动扫描"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:textColor="#ffffff"/>-->
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="60dp"
|
|
|
+ android:background="@color/transparent"
|
|
|
+ android:padding="10dp">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/back_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="取消"
|
|
|
+ android:textColor="#FF8200"
|
|
|
+ android:textSize="20sp"/>
|
|
|
+ <!--<ImageView
|
|
|
+ android:id="@+id/qrcode_iv"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:src="@drawable/scan_light"
|
|
|
+ android:layout_marginRight="5dp"/>-->
|
|
|
+
|
|
|
+ <TextView android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerInParent="true"
|
|
|
+ android:text="二维码/条形码"
|
|
|
+ android:textColor="#FF8200"
|
|
|
+ android:textSize="20sp"/>
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+</RelativeLayout>
|