基本用法
这是 TextInputLayout
的基本用法。
确保在备注部分中描述的 build.gradle
文件中添加依赖项。
例:
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/username"/>
</android.support.design.widget.TextInputLayout>