30 lines
909 B
XML
30 lines
909 B
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:text="Scan a QR code."
|
|
android:layout_width="wrap_content"
|
|
android:textColor="#ffffff"
|
|
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>
|