design包已經出來有幾年了,其中就有TextInputLayout&TextInputEditText,
<android.support.design.widget.TextInputLayout
android:id="@+id/rl_phone"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:theme="@style/TextInputLayoutLineColor"
app:counterEnabled="true"
app:counterMaxLength="11">
<android.support.design.widget.TextInputEditText
android:id="@+id/welcome_Phone_edit"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal"
android:hint="@string/phoneNum"
android:imeOptions="actionNext"
android:inputType="number"
android:maxLength="11"
android:singleLine="true"
android:textCursorDrawable="@drawable/shape_cursor"/>
</android.support.design.widget.TextInputLayout>
TextInputLayout能為輸入框提供簡單動畫,在擷取焦點後提示問題會有一個簡單的位移縮放動效,
如果是輸入密碼類型的話給TextInputEditText設定android:inputType=”textPassword”後會自動出現眼睛的按鈕,能控制密碼是否可見。
通過 app:counterEnabled=”true” app:counterMaxLength=”11” 兩句限制了最大字元長度,如果TextInputEditText不設定android:maxLength的話,超過11個字元就會變色提示,但仍然能輸入大于11個字元的資料,設定了android:maxLength後超過字元後輸入無效。
在這個控件出現之前隻能設定android:maxLength來限制字元長度,想要統計輸入字元個數都是通過addTextChangedListener來監聽字元變化後顯示在另一個textView中,
meditTextwords.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void afterTextChanged(Editable editable) {
mtextContentNum.setText(String.valueOf(( - editable.toString().trim().length())));
}
});