• android中如何在低版本(5.0之前)上使用tint(着色)属性


    1. 使用app前缀(app:backgroundTint,app:backgroundTintMode),如果使用android前缀,在低版本上是拿不到值的,因为这些属性是5.0以后才加入的。

    2. 自定义ATTRS数组,使用obtainStyledAttributes方法得到app:backgroundTint和app:backgroundTintMode的值。

    3. 使用v4包中的ViewCompat类----ViewCompat.setBackgroundTintList,ViewCompat.setBackgroundTintMode方法设置tint。

    大功告成,这样可以同时兼容4.x和5.x。如果只在java代码中使用,其实只要使用ViewCompat类就好了,其实底层原理是一样的,都是ColorFilter、PorterDuff在起作用,ViewCompact针对不同版本进行了封装,更容易使用了,不用我们去管底层实现细节。

    我自己写了个工具类,代码如下

    package com.sky.support;
    
    import android.content.res.ColorStateList;
    import android.content.res.TypedArray;
    import android.graphics.PorterDuff;
    import android.support.v4.view.ViewCompat;
    import android.util.AttributeSet;
    import android.view.View;
    
    /**
     * Created by sky on 2015/9/15.
     * <p/>
     * View Utils
     */
    public class ViewUtils {
    
        private static final int[] TINT_ATTRS = {
                R.attr.backgroundTint,      //in v7
                R.attr.backgroundTintMode,  //in v7
        };
    
        public static void supportTint(View view, AttributeSet attrs) {
            TypedArray a = view.getContext().obtainStyledAttributes(attrs, TINT_ATTRS);
            if (a.hasValue(0)){
                //set backgroundTint
                ColorStateList colorStateList = a.getColorStateList(0);
                ViewCompat.setBackgroundTintList(view, colorStateList);
            }
            if (a.hasValue(1)){
                //set backgroundTintMode
                int mode = a.getInt(1, -1);
                ViewCompat.setBackgroundTintMode(view, parseTintMode(mode, null));
            }
            a.recycle();
        }
    
        /**
         * Parses a {@link android.graphics.PorterDuff.Mode} from a tintMode
         * attribute's enum value.
         *
         * @hide
         */
        public static PorterDuff.Mode parseTintMode(int value, PorterDuff.Mode defaultMode) {
            switch (value) {
                case 3:
                    return PorterDuff.Mode.SRC_OVER;
                case 5:
                    return PorterDuff.Mode.SRC_IN;
                case 9:
                    return PorterDuff.Mode.SRC_ATOP;
                case 14:
                    return PorterDuff.Mode.MULTIPLY;
                case 15:
                    return PorterDuff.Mode.SCREEN;
                case 16:
                    return PorterDuff.Mode.ADD;
                default:
                    return defaultMode;
            }
        }
    }
  • 相关阅读:
    20110603 本日跌的股票之后一段时间轻易不要碰
    一日三省
    火电排污新标准年内出台 撬动千亿脱硝市场
    20082011大股东增持专题
    收评:5月24日资金流向(摘自益盟)
    2011年中期业绩预增前20家公司
    2011大股东十大增持概念股全景图
    放不下期货
    从众是通向地狱最廉价的门票
    在ASP.NET中获取Get方式和Post方式提交的数据
  • 原文地址:https://www.cnblogs.com/DarkMaster/p/4811072.html
Copyright © 2020-2023  润新知