-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
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
[TextInputEditText] Several issues with typefaces in TextInputEditText (e.g.,Typeface is not applied with textPassword inputType) #584
Comments
Also related:
** Material Library version:** Material Android Library version 1.1.0-alpha10 |
Also: HintTextAppearance with textAllCaps doesn't work #586 |
also not working in 1.1.0-beta02 |
Jesus christ this library is a steaming pile of shit. Nothing is working. |
The same bug. Any news when this will be fixed? |
Seems like the |
If you write a custom typeface override to reuse all over the project programatically, it doesn't render correctly class FontOverrideEditText @JvmOverloads constructor(
context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0
) : TextInputEditText(context, attrs, defStyleAttr) {
init {
typeface = ResourcesCompat.getFont(context, R.font.your_font)
}
} |
Is an issue on (current latest) At this time, we can't use |
A temporary workaround can be setting hint text appearance after the view layout |
Seeing the same problem would be great to see this fixed. |
The bug still exists in @leticiarossi and @ymarian you seem to be quite active on this component. Any news about this bug? 🙂 |
the app compat widgets |
textAllCaps for hint does not work still |
Typeface is not applied with textPassword inputType -> still appears on |
I have similar problem even now. I want to make hint's font poppins and edittext's poppins_semibold but two of them became poppins_semibold. |
Description:
Typeface is not applied with textPassword inputType.
Expected behavior:
When android:inputType="text|textPassword|textNoSuggestions" (incorrect behaviour)
When android:inputType="text|textNoSuggestions" (expected behaviour)
Source code:
Android API version:
All
Material Library version:
1.0.0
Device:
Emulators
The text was updated successfully, but these errors were encountered: