mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
38 lines
1.6 KiB
XML
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>
|