wangjiegulu / RapidFloatingActionButton

Quick solutions for Floating Action Button,RapidFloatingActionButton(RFAB)
Apache License 2.0
1.29k stars 254 forks source link

How to disable fab rotation #41

Open Isquierdo opened 5 years ago

Isquierdo commented 5 years ago

It's possible to disable/control the fab rotation?

Isquierdo commented 5 years ago

Solved extending RapidFloatingActionButton:

class RapidFloatingActionButtonFixed @JvmOverloads constructor(
    context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0
)
 : RapidFloatingActionButton(context, attrs, defStyleAttr) {

    override fun onExpandAnimator(animatorSet: AnimatorSet?) {}

    override fun onCollapseAnimator(animatorSet: AnimatorSet?) {}

}