Commit 88436bd9 authored by Chris Banes's avatar Chris Banes
Browse files

Add demo for TextInputLayout's counter

Change-Id: I3a2453b6d5ad3d5ea2abd5de66c95a7db0bd6f83
parent 3848c332
......@@ -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
......@@ -52,6 +52,7 @@
<string name="form_username">Username</string>
<string name="form_email">Email address</string>
<string name="form_description">Description</string>
<string name="show_error">Show error</string>
<string name="clear_error">Clear error</string>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment