FileDocCategorySizeDatePackage
TintMultiAutoCompleteTextView.javaAPI DocAndroid 5.1 API2069Thu Mar 12 22:22:56 GMT 2015android.support.v7.internal.widget

TintMultiAutoCompleteTextView

public class TintMultiAutoCompleteTextView extends android.widget.MultiAutoCompleteTextView
An tint aware {@link android.widget.MultiAutoCompleteTextView}.
hide

Fields Summary
private static final int[]
TINT_ATTRS
private final TintManager
mTintManager
Constructors Summary
public TintMultiAutoCompleteTextView(android.content.Context context)


       
        this(context, null);
    
public TintMultiAutoCompleteTextView(android.content.Context context, android.util.AttributeSet attrs)

        this(context, attrs, android.R.attr.autoCompleteTextViewStyle);
    
public TintMultiAutoCompleteTextView(android.content.Context context, android.util.AttributeSet attrs, int defStyleAttr)

        super(context, attrs, defStyleAttr);

        TintTypedArray a = TintTypedArray.obtainStyledAttributes(context, attrs, TINT_ATTRS,
                defStyleAttr, 0);
        setBackgroundDrawable(a.getDrawable(0));
        if (a.hasValue(1)) {
            setDropDownBackgroundDrawable(a.getDrawable(1));
        }
        a.recycle();

        mTintManager = a.getTintManager();
    
Methods Summary
public voidsetDropDownBackgroundResource(int id)

        setDropDownBackgroundDrawable(mTintManager.getDrawable(id));