Fabulous icon indicating copy to clipboard operation
Fabulous copied to clipboard

FAB disappears while scrolling

Open bffcorreia opened this issue 11 years ago • 11 comments

The Floating Action Button disappears when we scroll up and down fast. To reproduce this behaviour, simply add more items in the sample application and scroll down. Before the scroll stop, scroll up.

Tested with Nexus 5 using version 4.4.4.

bffcorreia avatar Aug 03 '14 22:08 bffcorreia

+1, Also seeing this issue

MichaelEvans avatar Aug 05 '14 20:08 MichaelEvans

+1. Easy to reproduce by following what @bffcorreia said

mradzinski avatar Aug 07 '14 03:08 mradzinski

+1 has anyone found a solution?

Vierco avatar Aug 10 '14 19:08 Vierco

+1 i have tabs in my layout and have same problem

androideveloper avatar Aug 14 '14 18:08 androideveloper

same problem

anshul1235 avatar Aug 15 '14 12:08 anshul1235

same problem

ClarkXP avatar Aug 21 '14 19:08 ClarkXP

I've got a listview and I'm seeing the same error. Hoping for a fix soon.

ghost avatar Aug 24 '14 16:08 ghost

Same issue!

broakenmedia avatar Aug 25 '14 00:08 broakenmedia

I did a change on hide(), I declared initialY to save de initial Y value from View, works but I think that isn't the better solution:

public void hide(boolean hide) { if(initialY ==0){ initialY =getY(); } if (mHidden != hide) { float offset; if (mHidden) { offset = mCurrentY; } else { //mCurrentY = getY(); mCurrentY = initialY; offset = mScreenHeight; } mHidden = hide; ObjectAnimator animator = ObjectAnimator.ofFloat(this, "Y", offset); animator.setInterpolator(mInterpolator); animator.start(); } }

ClarkXP avatar Aug 25 '14 15:08 ClarkXP

@ClarkXP do a pull request...see if Faiz will accept it or attend to the issue.

ghost avatar Aug 26 '14 03:08 ghost

This should have been fixed with #14, right?

arusahni avatar Sep 01 '14 22:09 arusahni