Rabbit-R1/android (non root)/java/resources/res/layout/activity_scan_qrcode.xml
2024-05-21 17:08:36 -04:00

38 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:background="@color/black"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="260dp">
<com.journeyapps.barcodescanner.DecoratedBarcodeView
android:id="@+id/zxing_barcode_scanner"
android:layout_width="match_parent"
android:layout_height="260dp"
app:zxing_preview_scaling_strategy="centerCrop"
app:zxing_use_texture_view="false"/>
<tech.rabbit.r1launcher.initstep.scanqrcode.widget.BorderView
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
<Space
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<TextView
android:textSize="30sp"
android:textColor="@color/white"
android:gravity="center"
android:id="@+id/tv_tip"
android:layout_width="match_parent"
android:layout_height="36dp"
android:layout_marginTop="15dp"
android:layout_marginBottom="18dp"
android:includeFontPadding="false"
android:fontFamily="@font/power_grotesk_regular"
android:layout_marginStart="4dp"
android:layout_marginEnd="4dp"
android:textFontWeight="300"/>
</LinearLayout>