Skip to content

Floating Action Button Library for Android ver. 1.0.4

Compare
Choose a tag to compare
@vbaidak vbaidak released this 20 Feb 08:16
· 3 commits to master since this release
  1. Fixed issue #8: Both buttons show up when I only want one at a time:

    A small fix was applied to show(), hide() and dismiss() methods. Previously these methods might not work properly if the call was done within onCreate() method.
    This happened because of using android.view.View#isShown() method, which returned false even if the button was shown. Now these methods relay on VISIBILITY and work
    as expected wherever they called.