Floating Action Button Library for Android ver. 1.0.4
-
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.