You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi yavski ,
First of all, Thank you for this awesome library.
Is there any way to change the button icon in fabspeeddial - "+" (Need to replace the "+" with custom)
android:src="@drawable/reload" - Not working
The text was updated successfully, but these errors were encountered:
after investigating the code a little bit, this is what I think is your answer:
app:fabDrawable
The problem is that in order to make it animate (rotate) when tapped, you need to provide an animation through xml, and this only works from v21 and above.
In yavski project, look for: drawable-v21/fab_add_clear_selector.xml
So, if you want your custom "+" icon with rotation, you will have to create your own drawable-v21/your_custom_selector.xml which will be similar to yavski's but IT WILL ONLY WORK v21 and above.
I think yavski's library should have the ability to add it programmatically, having a hook method that the user may implement if desired.
Hi yavski ,
First of all, Thank you for this awesome library.
Is there any way to change the button icon in fabspeeddial - "+" (Need to replace the "+" with custom)
android:src="@drawable/reload" - Not working
The text was updated successfully, but these errors were encountered: