| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?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=".ui.first.QrCodeActivity">
- <com.hjq.bar.TitleBar
- android:id="@+id/tb_sao_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- app:rightTitle="相册"
- app:title="@string/inoculation_title" />
- <cn.bingoogolapple.qrcode.zxing.ZXingView
- android:layout_below="@id/tb_sao_title"
- android:id="@+id/zxingview"
- style="@style/MatchMatch"
- app:qrcv_animTime="1000"
- app:qrcv_barCodeTipText="将条码放入框内,即可自动扫描"
- app:qrcv_barcodeRectHeight="120dp"
- app:qrcv_borderColor="@android:color/white"
- app:qrcv_borderSize="1dp"
- app:qrcv_cornerColor="@color/colorPrimaryDark"
- app:qrcv_cornerDisplayType="center"
- app:qrcv_cornerLength="20dp"
- app:qrcv_cornerSize="3dp"
- app:qrcv_customScanLineDrawable="@drawable/scan_icon_scanline"
- app:qrcv_isAutoZoom="true"
- app:qrcv_isBarcode="false"
- app:qrcv_isOnlyDecodeScanBoxArea="false"
- app:qrcv_isScanLineReverse="true"
- app:qrcv_isShowDefaultGridScanLineDrawable="false"
- app:qrcv_isShowDefaultScanLineDrawable="true"
- app:qrcv_isShowLocationPoint="true"
- app:qrcv_isShowTipBackground="true"
- app:qrcv_isShowTipTextAsSingleLine="false"
- app:qrcv_isTipTextBelowRect="true"
- app:qrcv_maskColor="#33FFFFFF"
- app:qrcv_qrCodeTipText="将二维码/条码放入框内,即可自动扫描"
- app:qrcv_rectWidth="244dp"
- app:qrcv_scanLineColor="@color/colorPrimaryDark"
- app:qrcv_scanLineMargin="0dp"
- app:qrcv_scanLineSize="0.5dp"
- app:qrcv_tipTextColor="@android:color/white"
- app:qrcv_tipTextSize="12sp"
- app:qrcv_toolbarHeight="60dp"
- app:qrcv_topOffset="65dp"
- app:qrcv_verticalBias="-1" />
- <RelativeLayout
- android:layout_marginLeft="65dp"
- android:layout_marginRight="65dp"
- android:layout_marginBottom="57dp"
- android:layout_alignParentBottom="true"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:id="@+id/tv_addbyhand"
- android:text="手动输入"
- android:textColor="@color/white"
- android:textSize="15.36sp"
- android:layout_alignParentLeft="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- <TextView
- android:id="@+id/tv_skip"
- android:text="跳过此页"
- android:textColor="@color/white"
- android:textSize="15.36sp"
- android:layout_alignParentRight="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- </RelativeLayout>
- </RelativeLayout>
|