mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 10:18:12 +00:00
21 lines
912 B
XML
21 lines
912 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/enter_recipient_uuid"/>
|
||
|
|
<EditText
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:id="@+id/uuidEditText" android:layout_gravity="center_horizontal"
|
||
|
|
android:focusable="true" android:singleLine="true"/>
|
||
|
|
<Button
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/scan_qr_code"
|
||
|
|
android:id="@+id/scanQRCodeButton"/>
|
||
|
|
</LinearLayout>
|