mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
31 lines
No EOL
1.3 KiB
XML
31 lines
No EOL
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:parentTag="LinearLayout"
|
|
android:orientation="vertical">
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/input_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:theme="@style/TextInputLayoutAppearanceTheme"
|
|
style="@style/TextInputLayoutAppearance">
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/edit_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textEmailAddress" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
<TextView
|
|
android:id="@+id/error_text"
|
|
android:layout_gravity="center"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@style/Caption2.Regular"
|
|
android:layout_marginTop="@dimen/spacing_small"
|
|
android:textColor="@color/text_red"
|
|
android:visibility="gone"
|
|
tools:text="Error text"
|
|
tools:visibility="visible"/>
|
|
</merge> |