mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-15 12:16:31 +00:00
44 lines
No EOL
1.7 KiB
XML
44 lines
No EOL
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingStart="20dp"
|
|
android:paddingEnd="20dp"
|
|
android:gravity="center_horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/enter_recipient_username"
|
|
android:textSize="12sp"
|
|
android:textColor="@color/text_ternary"
|
|
android:labelFor="@id/uuidEditText"/>
|
|
<EditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/uuidEditText" android:layout_gravity="center_horizontal"
|
|
android:focusable="true"
|
|
android:maxLines="1"
|
|
android:inputType="textNoSuggestions" />
|
|
|
|
<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"/>
|
|
</LinearLayout> |