[FloatingActionButton] FAB does not move smoothly when SnackBar appears
See original GitHub issueDescription: FloatingActionButton twitches when SnackBar appears.
Expected behavior: Expected smoothly moving FAB.
Source code:
FloatingActionButton fab = findViewById(R.id.fab); fab.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) .setAction("Action", null).show(); } });
Android API version: Android API 23 and 24
Material Library version: 1.1.0
Device: Nexus 5X and Samsung J7
Issue Analytics
- State:
- Created 4 years ago
- Reactions:6
- Comments:5
Top Results From Across the Web
android - How to make snack bar and fab to move together
Use CoordinatorLayout that's enough, no need to change anything on Java code. ... For both click event SnackBar and Fab moves up smoothly...
Read more >Floating Action Button anchoring not working properly ...
The Snackbar comes up and the FAB's padding is lost. After a few seconds (about 8?), the padding returns and the FAB moves...
Read more >Floating Action Button and Snackbar - YouTube
This is a detailed video on Android Floating Action Button using the Snackbar functionalityDonate: https://www.paypal.me/delaroystudios.
Read more >5.2: Material Design · GitBook - GitHub Pages
Make animations and other motions in your app meaningful, so they don't happen at ... The layout moves some other UI elements when...
Read more >androidx.compose.material - Android Developers
The dialog does not set up any events for this button so they need to be set up by the ... The component...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I still have this issue with Materiel library version 1.3.0-alpha03
Can reproduce on the latest 1.2.0-alpha06. Trying out older versions of the library suggests this bug was introduced in 1.1.0-alpha10. The bug is not present in 1.1.0-alpha09.