Add demo for TextInputLayout's counter

Change-Id: I3a2453b6d5ad3d5ea2abd5de66c95a7db0bd6f83
This commit is contained in:
Chris Banes
2015-10-21 11:17:17 +01:00
parent 3848c332a7
commit 88436bd9f4
2 changed files with 32 additions and 9 deletions

View File

@@ -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>

View 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>