Obsolete
Status Update
Comments
ku...@google.com <ku...@google.com>
ku...@google.com <ku...@google.com> #2
Thank you for reporting this issue. For us to further investigate this issue, please provide the following additional information:
Steps to reproduce
Please provide a sample application or apk to reproduce the issue.
Also kindly mention the steps to be followed for reproducing the issue with the given sample application.
Expected output
Could you please explain the expected behavior.
Current output
Could you please explain the current behavior.
Steps to reproduce
Please provide a sample application or apk to reproduce the issue.
Also kindly mention the steps to be followed for reproducing the issue with the given sample application.
Expected output
Could you please explain the expected behavior.
Current output
Could you please explain the current behavior.
ji...@gmail.com <ji...@gmail.com> #3
The same issue found in 'com.android.support:design:28.0.0'
Reproducible on Android 8.1, not on Android API 4.2.2.
The reproduce flow is:
1. hide() and show() FAB.
2. setImageResource() with any resId, including current one.
Expect output
FAB is shown with target image.
Current output
FAB not showing any image resource
Reproducible on Android 8.1, not on Android API 4.2.2.
The reproduce flow is:
1. hide() and show() FAB.
2. setImageResource() with any resId, including current one.
Expect output
FAB is shown with target image.
Current output
FAB not showing any image resource
ku...@google.com <ku...@google.com> #4
Please provide a sample application or apk to reproduce this issue.
[Deleted User] <[Deleted User]> #5
Here is a sample apk. Clicking the FAB will normally toggle the image resource, unless you click the other button to hide and show it first.
ku...@google.com <ku...@google.com> #6
Thank you for reporting this issue. We have shared this with our product and engineering team and will update this issue with more information as it becomes available.
bs...@googlemail.com <bs...@googlemail.com> #7
The issue is introduced in v28.0.0. v27.1.1 is working as expected.
eb...@netflix.com <eb...@netflix.com> #8
The problem is that `imageMatrixScale` in FloatingActionButtonImpl is set to 0.0F in the show() method and never being reset to 1.0F. Since FloatingActionButton.setImageDrawable() calls getImpl().updateImageMatrixScale(), it sets the scale to 0.0F, leaving the FAB blank
mi...@novotek.rs <mi...@novotek.rs> #9
This is not happening only for material from X, but in regular support library. Any temporary solution for this?
mi...@novotek.rs <mi...@novotek.rs> #10
Solution that worked for me:
floatingActionButton.hide();
floatingActionButton.setImageDrawable(whatever_drawable);
floatingActionButton.show();
floatingActionButton.hide();
floatingActionButton.setImageDrawable(whatever_drawable);
floatingActionButton.show();
re...@gmail.com <re...@gmail.com> #11
Wondering if you could reconsider the priority/severity on this please. This bug affects use of animated icons in a floating action button after show()/hide().
My use case: a floating action button for play/pause. The play/pause image has an animated icon to transition between play and pause (similar to Google Music play button. androidx classes for animated icons call setDrawable at the start and end of the animation. So although the transition is delightful, at the end of the animation, the icon disappears (because imageMatrixScale is left at zero after the end of the show() animation.
My use case: a floating action button for play/pause. The play/pause image has an animated icon to transition between play and pause (similar to Google Music play button. androidx classes for animated icons call setDrawable at the start and end of the animation. So although the transition is delightful, at the end of the animation, the icon disappears (because imageMatrixScale is left at zero after the end of the show() animation.
re...@gmail.com <re...@gmail.com> #12
Another workaround is to call setVisibility(VISIBLE)/setVisbility(HIDDEN) and suppress the compiler warnings you receive when you do call setVisibility().
bs...@googlemail.com <bs...@googlemail.com> #13
I would also appreciate a fix. It is only one line...
ad...@google.com <ad...@google.com>
a....@gmail.com <a....@gmail.com> #14
What is the ETA on the fix? This has been for some time. We can no longer build with old API
vi...@google.com <vi...@google.com>
cc...@google.com <cc...@google.com>
cc...@google.com <cc...@google.com>
al...@google.com <al...@google.com> #15
This issue was filed against the top-level component, which is not monitored, and has exceeded the age limit for triage to the appropriate sub-component.
If this issue is still relevant, please re-file it against the appropriate sub-component.
If this issue is still relevant, please re-file it against the appropriate sub-component.
Description
As a temporary fix I've replaced the method calls with my own scale animations which does not seem to affect the drawable.
Artifact used (ex. androidx.appcompat:appcompat:1.0.0-alpha1): com.google.android.material:material:1.0.0
Theme used: Theme.AppCompat.Light.NoActionBar
Devices/Android versions reproduced on: happens on multiple sdks/emulators/devices