/*
* Copyright (C) 2016 Bilibili
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.bilibili.magicasakura.widgets;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.PorterDuff;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.support.annotation.DrawableRes;
import android.support.v4.graphics.drawable.DrawableCompat;
import android.util.AttributeSet;
import android.widget.CheckedTextView;
import com.bilibili.magicasakura.utils.TintManager;
import com.wm.remusic.R;
/**
* @author xyczero617@gmail.com
* @time 16/2/1
* <p>
* special view for replacing view in preference , not recommend to use it in common
* layout: select_dialog_singlechoice_xxx
*/
public class TintCheckedTextView extends CheckedTextView implements Tintable {
private static final int[] ATTRS = {
android.R.attr.drawableLeft,
R.attr.drawableLeftTint
};
public TintCheckedTextView(Context context) {
this(context, null);
}
public TintCheckedTextView(Context context, AttributeSet attrs) {
this(context, attrs, R.attr.checkedTextViewStyle);
}
public TintCheckedTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
TypedArray array = context.obtainStyledAttributes(attrs, ATTRS);
final int drawLeftId = array.getResourceId(0, 0);
final int drawLeftTintId = array.getResourceId(1, 0);
array.recycle();
if (drawLeftId != 0 && drawLeftTintId != 0) {
tintCheckTextView(drawLeftId, drawLeftTintId);
}
}
public void tintCheckTextView(@DrawableRes int resId, int tintId) {
Drawable drawable = DrawableCompat.wrap(getResources().getDrawable(resId));
DrawableCompat.setTintList(drawable, TintManager.get(getContext()).getColorStateList(tintId));
DrawableCompat.setTintMode(drawable, PorterDuff.Mode.SRC_IN);
//android-sdk-23 material layout is deprecate android.R.styleable#CheckedTextView_checkMark
//follow android native style, check position is left when version is above 5.0
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
setCompoundDrawablesRelativeWithIntrinsicBounds(drawable, null, null, null);
setCheckMarkDrawable(null);
} else {
setCheckMarkDrawable(drawable);
setCompoundDrawablesWithIntrinsicBounds(null, null, null, null);
}
}
@Override
public void setCheckMarkDrawable(Drawable d) {
super.setCheckMarkDrawable(d);
//FIXME:recommend not to use it
}
@Override
public void setCheckMarkDrawable(int resId) {
super.setCheckMarkDrawable(resId);
//FIXME:recommend not to use it
}
@Override
public void tint() {
}
}