布局示例
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@+id/btn_speech"
android:layout_marginTop="@dimen/dp_15"
android:hint="请输入你的银行卡密码"
app:counterMaxLength="16"
app:counterEnabled="true"
app:errorEnabled="true"
app:passwordToggleEnabled="true">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword" />
</com.google.android.material.textfield.TextInputLayout>
效果
|