2016-08-19 16:54:11 +00:00
|
|
|
<?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"
|
2017-02-01 15:58:53 +00:00
|
|
|
android:focusable="true"
|
|
|
|
|
android:maxLines="1"/>
|
2016-08-19 16:54:11 +00:00
|
|
|
<Button
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/scan_qr_code"
|
|
|
|
|
android:id="@+id/scanQRCodeButton"/>
|
|
|
|
|
</LinearLayout>
|