| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context="cn.x1ongzhu.qrCodeScanner.ScanActivity">
- <cn.bingoogolapple.qrcode.zxing.ZXingView
- android:id="@+id/zxingview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- app:qrcv_animTime="1000"
- app:qrcv_barCodeTipText="将条码放入框内,即可自动扫描"
- app:qrcv_barcodeRectHeight="140dp"
- app:qrcv_borderColor="@android:color/white"
- app:qrcv_borderSize="1dp"
- app:qrcv_cornerColor="#2face9"
- app:qrcv_cornerLength="10dp"
- app:qrcv_cornerSize="3dp"
- app:qrcv_isBarcode="false"
- app:qrcv_isCenterVertical="false"
- app:qrcv_isOnlyDecodeScanBoxArea="true"
- app:qrcv_isScanLineReverse="true"
- app:qrcv_isShowDefaultGridScanLineDrawable="false"
- app:qrcv_isShowDefaultScanLineDrawable="true"
- app:qrcv_isShowTipBackground="true"
- app:qrcv_isShowTipTextAsSingleLine="false"
- app:qrcv_isTipTextBelowRect="false"
- app:qrcv_maskColor="#66000000"
- app:qrcv_qrCodeTipText="将二维码放入框内\n即可自动扫描"
- app:qrcv_rectWidth="170dp"
- app:qrcv_scanLineColor="#2face9"
- app:qrcv_scanLineMargin="0dp"
- app:qrcv_scanLineSize="0.5dp"
- app:qrcv_tipTextColor="@android:color/white"
- app:qrcv_tipTextSize="12sp"
- app:qrcv_toolbarHeight="160dp"
- app:qrcv_topOffset="0dp" />
- <ImageButton
- android:id="@+id/btn_flash"
- android:layout_width="64dp"
- android:layout_height="64dp"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="60dp"
- android:background="@null"
- android:scaleType="fitXY"
- android:src="@drawable/ic_flash" />
- <ImageButton
- android:id="@+id/btn_back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="15dp"
- android:layout_marginTop="15dp"
- android:background="@null"
- android:src="@drawable/prev" />
- </RelativeLayout>
|