<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<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_qrCodeTipText="将二维码放入框内,即可自动扫描"
|
app:qrcv_barcodeRectHeight="120dp"
|
app:qrcv_borderSize="0dp"
|
app:qrcv_cornerColor="@color/white"
|
app:qrcv_cornerDisplayType="center"
|
app:qrcv_cornerLength="20dp"
|
app:qrcv_cornerSize="3dp"
|
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="false"
|
app:qrcv_maskColor="#66FFFFFF"
|
app:qrcv_rectWidth="270dp"
|
app:qrcv_scanLineColor="@color/colorPrimary"
|
app:qrcv_scanLineMargin="0dp"
|
app:qrcv_scanLineSize="0.5dp"
|
app:qrcv_tipTextColor="@android:color/white"
|
app:qrcv_tipTextSize="12sp"
|
app:qrcv_toolbarHeight="56dp"
|
app:qrcv_topOffset="65dp"
|
app:qrcv_verticalBias="-1" />
|
<cn.sinata.xldutils.view.TitleBar
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:id="@+id/titleBar"
|
app:layout_constraintTop_toTopOf="parent"
|
android:layout_marginTop="20dp"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|