带有动画的自定义圆形切换按钮

Custom circle shaped toggle button with animation

我想创建带有动画的自定义切换按钮,我需要它是圆形的。如何创建带动画的切换圆圈按钮?

我也不会做自定义按钮!

你有什么建议吗?

将此添加到您的 build.gradle

dependencies {
    compile 'me.rishabhkhanna:CustomToggle:1.0.0'
}

并使用它代替 ToggleButton

<me.rishabhkhanna.customtogglebutton.CustomToggleButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:textOn="toggle button"
    android:textOff="toggle button"
    ></me.rishabhkhanna.customtogglebutton.CustomToggleButton>

这是网站link