summaryrefslogtreecommitdiffstats
path: root/samples/SupportDesignDemos/res/layout/design_text_input.xml
diff options
context:
space:
mode:
Diffstat (limited to 'samples/SupportDesignDemos/res/layout/design_text_input.xml')
-rw-r--r--samples/SupportDesignDemos/res/layout/design_text_input.xml40
1 files changed, 31 insertions, 9 deletions
diff --git a/samples/SupportDesignDemos/res/layout/design_text_input.xml b/samples/SupportDesignDemos/res/layout/design_text_input.xml
index 4561df125..32260746f 100644
--- a/samples/SupportDesignDemos/res/layout/design_text_input.xml
+++ b/samples/SupportDesignDemos/res/layout/design_text_input.xml
@@ -36,6 +36,24 @@
</android.support.design.widget.TextInputLayout>
+ <LinearLayout android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
+
+ <Button
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/show_error"
+ android:onClick="showError"/>
+
+ <Button
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/clear_error"
+ android:onClick="clearError"/>
+
+ </LinearLayout>
+
<android.support.design.widget.TextInputLayout
android:id="@+id/input_email"
android:layout_width="match_parent"
@@ -51,16 +69,20 @@
</android.support.design.widget.TextInputLayout>
- <Button
- android:layout_width="wrap_content"
+ <android.support.design.widget.TextInputLayout
+ android:id="@+id/input_description"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:text="@string/show_error"
- android:onClick="showError"/>
+ android:layout_marginTop="8dp"
+ app:counterEnabled="true"
+ app:counterMaxLength="30">
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/clear_error"
- android:onClick="clearError"/>
+ <EditText
+ android:id="@+id/edit_description"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:hint="@string/form_description"/>
+
+ </android.support.design.widget.TextInputLayout>
</LinearLayout> \ No newline at end of file