http://www.google.com/design/spec/components/text-fields.html#text-fields-single-line-text-field
実装は非常に簡単で、EditTextをTextInputLayutで囲うだけです。
<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>
各パーツはマテリアルカラーに準じています。

0 件のコメント:
コメントを投稿