Varad Mondkar
Results
2
comments of
Varad Mondkar
Hi @yatindeokar have you got the solution? I also want to give custom colors to each funnel section
``` myFab.setImageDrawable( AppCompatDrawableManager.get().getDrawable(getActivity(), R.drawable.ic_add_white_24dp) ); ``` Throws warning for me. > AppCompatDrawableManager can only be called from within the same library group (groupId=com.android.support) I used `ContextCompat` instead ``` myFab.setImageDrawable(ContextCompat.getDrawable(getContext(), R.drawable.ic_add_white_24dp));...