基本用法

這是 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>