/* * Copyright (c) 2014 OpenSilk Productions LLC * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.opensilk.common.ui.widget; import android.content.Context; import android.support.v7.widget.AppCompatImageButton; import android.util.AttributeSet; import android.widget.Checkable; import android.widget.ImageButton; /** * Created by drew on 11/26/14. */ public class ImageButtonCheckable extends AppCompatImageButton implements Checkable { private static final int[] STATE_CHECKED = new int[]{android.R.attr.state_checked}; private static final int[] STATE_UNCHECKED = new int[]{}; private boolean mChecked; public ImageButtonCheckable(Context context, AttributeSet attrs) { super(context, attrs); } @Override public void setChecked(final boolean checked) { if (checked == mChecked) return; mChecked = checked; setImageState(checked ? STATE_CHECKED : STATE_UNCHECKED, true); } @Override public boolean isChecked() { return mChecked; } @Override public void toggle() { setChecked(!mChecked); } }