Skip to content

Instantly share code, notes, and snippets.

@tushar-nallan
tushar-nallan / LottieCheckBox.java
Last active May 14, 2019 02:00
Implement a checkbox using lottie animations
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;