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"
|
2020-03-19 12:12:49 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="20dp"
|
|
|
|
|
android:paddingEnd="20dp"
|
2020-03-19 12:12:49 +00:00
|
|
|
android:gravity="center_horizontal">
|
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"
|
2021-06-21 11:39:00 +00:00
|
|
|
android:textColor="@color/text_ternary"
|
|
|
|
|
android:labelFor="@id/uuidEditText"/>
|
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"
|
2021-06-21 11:39:00 +00:00
|
|
|
android:maxLines="1"
|
|
|
|
|
android:inputType="textNoSuggestions" />
|
2020-03-19 12:12:49 +00:00
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
|
android:id="@+id/progress_circular"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:visibility="visible"
|
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/error_text_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/spacing_medium"
|
|
|
|
|
android:layout_marginBottom="@dimen/spacing_medium"
|
|
|
|
|
android:text="@string/could_not_find_user"
|
|
|
|
|
android:textColor="@color/red_50"
|
|
|
|
|
tools:visibility="visible"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:visibility="gone"/>
|
2016-08-19 16:54:11 +00:00
|
|
|
</LinearLayout>
|