• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:app="http://schemas.android.com/apk/res-auto"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent">
6
7    <com.dlazaro66.qrcodereaderview.QRCodeReaderView
8        android:id="@+id/qrView"
9        android:layout_width="match_parent"
10        android:layout_height="match_parent"/>
11
12    <TextView
13        android:id="@+id/textScanPrompt"
14        android:layout_width="match_parent"
15        android:layout_height="wrap_content"
16        android:layout_gravity="bottom"
17        android:background="@android:color/black"
18        android:gravity="center"
19        android:padding="8dp"
20        android:text="@string/scan_prompt"
21        android:textColor="@android:color/white"/>
22
23
24    <ImageView
25        android:id="@+id/scannerOverlay"
26        android:layout_width="200dp"
27        android:layout_height="200dp"
28        android:layout_gravity="center"
29        android:contentDescription="@string/qr_code_overlay"
30        app:srcCompat="@drawable/ic_qr_overlay"/>
31
32
33</FrameLayout>
34
35
36