We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to use this library with this:
<com.google.android.material.textfield.TextInputLayout android:id="@+id/inputLoginPass" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginStart="15dp" android:layout_marginTop="5dp" android:layout_marginEnd="15dp" android:backgroundTint="@color/light_blue_background" android:textColor="@color/blue_button" app:boxStrokeWidth="0dp" app:boxStrokeWidthFocused="0dp" app:hintEnabled="false" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/textLabelPass" app:passwordToggleEnabled="true" app:passwordToggleTint="@color/blue_button">
<com.google.android.material.textfield.TextInputEditText android:id="@+id/etLoginPass" android:layout_width="match_parent" android:layout_height="match_parent" android:backgroundTint="@color/light_blue_background" android:fontFamily="@font/opensans_regular" android:inputType="textPassword" android:maxLines="1" android:paddingTop="18dp" android:paddingBottom="18dp" android:textColor="@color/blue_button" /> </com.google.android.material.textfield.TextInputLayout>
The text was updated successfully, but these errors were encountered:
Hi, Just use MaskedWatcher.kt like described in Readme or create own implementation of TextInputLayout based on it (see MaskedEditText.kt).
MaskedWatcher.kt
TextInputLayout
MaskedEditText.kt
Sorry, something went wrong.
No branches or pull requests
I want to use this library with this:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/inputLoginPass"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginStart="15dp"
android:layout_marginTop="5dp"
android:layout_marginEnd="15dp"
android:backgroundTint="@color/light_blue_background"
android:textColor="@color/blue_button"
app:boxStrokeWidth="0dp"
app:boxStrokeWidthFocused="0dp"
app:hintEnabled="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textLabelPass"
app:passwordToggleEnabled="true"
app:passwordToggleTint="@color/blue_button">
The text was updated successfully, but these errors were encountered: