Fixed
Status Update
Comments
kz...@gmail.com <kz...@gmail.com> #2
Hello,
Thank you for reaching out to us!
This issue seems to be outside of the scope of Issue Tracker. This Issue Tracker is a forum for end users to report bugs
and request features
on Google Cloud products. Please go through
I recommend you to
For now, I'm going to close this thread which will no longer be monitored. In case you want to report a new issue, please do not hesitate to create a new Issue Tracker describing your issue.
Thank you!
su...@gmail.com <su...@gmail.com> #3
i have same problem too,
my problem is:
24.0.0, my right drawable still looks ok.
24.2.0, the drawable move to below the text.
my problem is:
24.0.0, my right drawable still looks ok.
24.2.0, the drawable move to below the text.
al...@android.com <al...@android.com>
ch...@google.com <ch...@google.com>
ch...@google.com <ch...@google.com> #4
Fixed in the 24.2.1 of the support library
ja...@gmail.com <ja...@gmail.com> #5
Looks like this fix overrides the setError() drawable for the underlying EditText and doesn't display it.
I'm using a custom drawable, but just using the regular setError() with no drawable has the same issue.
Might not be this exact problem, but it seems to be affected by the same "fix".
I'm using a custom drawable, but just using the regular setError() with no drawable has the same issue.
Might not be this exact problem, but it seems to be affected by the same "fix".
ch...@google.com <ch...@google.com> #6
#6: EditText.setError() hasn't been tested and isn't supported. This fix doesn't affect that at all, all it does is re-set any existing drawableRight correctly after the password toggle is toggled.
al...@android.com <al...@android.com> #7
This has been released in support library 25.0.0.
do...@azimo.com <do...@azimo.com> #8
This is what I observe in 25.0.0 (hasn't previously). Setting etDateOfBirth.getRawEditText().setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.ic_dropdown, 0); has no effect.
Description
Version used: 24.2.0
Theme used: Theme.AppCompat.Light
Devices/Android versions reproduced on: Nexus 5x API 23, Emulator API 24
With the addition of the password toggle view in 24.2.0, in TextInputLayout#updatePasswordToggleView, if the password toggle view is not being shown it falls back to running the following code:
// Make sure that we remove the dummy end compound drawable
final Drawable[] compounds = TextViewCompat.getCompoundDrawablesRelative(mEditText);
TextViewCompat.setCompoundDrawablesRelative(mEditText, compounds[0], compounds[1],
null, compounds[2]);
This makes it impossible to use a right compound drawable with a TextInputLayout.