The string is not translated and might not be accessible for non-english speakers, even though its relatively self-explanatory i think adding this emoji makes it more accessible.
37 lines
1.1 KiB
XML
37 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/content_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/hint"
|
|
android:layout_gravity="center|top"
|
|
android:gravity="center"
|
|
android:text="Scan a QR code."
|
|
android:layout_width="wrap_content"
|
|
android:textColor="#ffffff"
|
|
android:shadowColor="#000000"
|
|
android:shadowDx="1"
|
|
android:shadowDy="1"
|
|
android:shadowRadius="2"
|
|
android:textSize="15sp"
|
|
android:padding="14dp"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<Button
|
|
android:id="@+id/paste_btn"
|
|
android:layout_gravity="center|bottom"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Paste from clipboard 📋" />
|
|
|
|
</FrameLayout>
|