This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.animation.Animator; | |
import android.content.Context; | |
import android.util.AttributeSet; | |
import android.widget.Checkable; | |
import com.airbnb.lottie.LottieAnimationView; | |
public class LottieCheckBox extends LottieAnimationView implements Checkable, Animator.AnimatorListener { | |
private boolean checked; | |
private boolean isFirstLoad = true; | |
private OnCheckedChangeListener listener; |