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"
|
2018-10-17 14:28:23 +00:00
|
|
|
android:layout_height="match_parent"
|
2018-12-04 13:28:03 +00:00
|
|
|
android:paddingLeft="20dp"
|
|
|
|
|
android:paddingRight="20dp">
|
2016-08-19 16:54:11 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2018-12-04 13:28:03 +00:00
|
|
|
android:text="@string/enter_recipient_username"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textColor="@color/gray_200"/>
|
2016-08-19 16:54:11 +00:00
|
|
|
<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
|
|
|
</LinearLayout>
|