トラッキング コード

6/08/2015

Hot to use TextInputLayout , Android Support library v22.2

I can implement Text field of Material Design too easy.
http://www.google.com/design/spec/components/text-fields.html#text-fields-single-line-text-field


1
2
3
4
5
6
7
8
9
10
11
12
13
<android.support.design.widget.TextInputLayout
        android:id="@+id/textInputLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:hintTextAppearance="@style/TextInputLayoutHintAppearance">
    <EditText
            android:id="@+id/editText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:inputType="textEmailAddress"
            android:hint="HintText"
            android:ems="10"/>
</android.support.design.widget.TextInputLayout>




The each parts color is material color.

No comments:

Post a Comment