自定义view运用样式

1 前言

在讲解Themestyle的原理剖析之前,我们先了解一下它们的使用方式。相信很多人都不陌生,或者是经常使用。不清楚的可以查看 theme_style 用法,那我们今天就说一下大家不太清楚的部分。

2 自定义 view 的样式

今天我们不讲如何自定义view,我们只讲它如何定制样式的部分。请看下面的方法,大家都遇到过,但是方法里的每个参数,你们都清楚吗?下面我用demo带大家一起看。

obtainStyledAttributes(AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes)

2.1 定义属性 attr

首先,我们在res/values/attrs.xml为自定义的控件先加几个属性,如下:




    
        
        
        
        
    

    


上面声明了CustomizeCustomizeStyle,且Customize包含了四个属性attrTest1attrTest2attrTest3attrTest4。此外CustomizeStyle也是一个属性。

它们唯一的区别是,一个用declare-styleable包裹了,另一个没有包裹。

首先,只要是声明了属性的,都会在R.java文件生成内部attr类,并生成id值。如下所示:

public final class R {
    
    public static final class attr {
        public static final int CustomizeStyle=0x7f020000;

        public static final int attrTest1=0x7f02002c;
        public static final int attrTest2=0x7f02002d;
        public static final int attrTest3=0x7f02002e;
        public static final int attrTest4=0x7f02002f;
    }
    
}

当用declare-styleable包裹的属性,会在styleable内部类中多一些生成,如下所示:

public final class R {
    public static final class styleable {
    
        public static final int[] Customize={
            0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f
        };
      
        public static final int Customize_attrTest1=0;
        public static final int Customize_attrTest2=1;
        public static final int Customize_attrTest3=2;
        public static final int Customize_attrTest4=3;
    }
}

2.2 自定义 view

接下来我们定义一个java类继承自TextView。并且添加上一些log,代码如下:

package com.example.liqiuyue.attributetest;

public class CustomTextViewTest extends TextView {

    public CustomTextViewTest(Context context) {
        super(context);
        Log.d("test1111", "CustomTextViewTest(Context context) ");
        getAttrValue(context, null,0);
    }

    public CustomTextViewTest(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        Log.d("test1111", "CustomTextViewTest(Context context, AttributeSet attrs) ");
        getAttrValue(context, attrs,0);
    }

    public CustomTextViewTest(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        Log.d("test1111", "CustomTextViewTest(Context context, AttributeSet attrs, int defStyleAttr) ");
        getAttrValue(context, attrs, defStyleAttr);
    }

    private void getAttrValue(Context context, AttributeSet attrs, int defStyleAttr){
        if (attrs != null) {
            TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.Customize, defStyleAttr, 0);
            String attrTest1 = typedArray.getString(R.styleable.Customize_attrTest1);
            String attrTest2 = typedArray.getString(R.styleable.Customize_attrTest2);
            String attrTest3 = typedArray.getString(R.styleable.Customize_attrTest3);
            String attrTest4 = typedArray.getString(R.styleable.Customize_attrTest4);

            Log.d("test1111", "attrTest1 = " + attrTest1);
            Log.d("test1111", "attrTest2 = " + attrTest2);
            Log.d("test1111", "attrTest3 = " + attrTest3);
            Log.d("test1111", "attrTest4 = " + attrTest4);

            typedArray.recycle();
        }
    }
}

3 多种方式添加 style

3.1 在 layout 中定义 attr

首先,我们在layout布局文件中引用我们刚刚自定义的view




      


此外,我们的res/values/styles.xml如下定义:


    //我们app用的主题
    


编译,运行apk,打印log如下:

test1111: CustomTextViewTest(Context context, AttributeSet attrs) 
test1111: attrTest1 = attrTest1 in layout
test1111: attrTest2 = AppTheme_attrTest2
test1111: attrTest3 = AppTheme_attrTest3
test1111: attrTest4 = AppTheme_attrTest4

发现当在layout布局文件添加CustomTextViewTest时,走的是第二个构造方法。且layout布局文件中attrTest1的值覆盖了在theme里面的值。

3.2 在 layout 中引用 style

接着,我们为CustomTextViewTest设置style,布局文件如下:




      


res/values/styles.xml文件如下:


    //我们app用的主题
    
    
    //layout 中引用的 style 
    


其它文件内容不变。

编译,运行apk,打印log如下:

test1111: CustomTextViewTest(Context context, AttributeSet attrs) 
test1111: attrTest1 = attrTest1 in layout
test1111: attrTest2 = CustomizeStyleInLayout_attrTest2
test1111: attrTest3 = AppTheme_attrTest3
test1111: attrTest4 = AppTheme_attrTest4

发现直接在layout布局文件中定义的属性值,覆盖了 CustomTextViewTestlayout中引用的stylestyle又覆盖了theme里面的属性值。

3.3 为 defStyleAttr 赋值

还记得吗?我们声明的CustomizeStyle还没有赋值。我们在res/values/styles.xml赋值,内容如下:


    //我们app用的主题
    
    
    //layout 中引用的 style 
    
    
    //CustomizeStyle 的引用
    


java文件,只修改obtainStyledAttributes()方法的第三个参数为R.attr.CustomizeStyle,改动内容如下:

TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.Customize, R.attr.CustomizeStyle, 0);

其它文件内容不变。

编译,运行apk,打印log如下:

CustomTextViewTest(Context context, AttributeSet attrs) 
test1111: attrTest1 = attrTest1 in layout
test1111: attrTest2 = CustomizeStyleInLayout_attrTest2
test1111: attrTest3 = CustomizeStyleAttr_In_AppTheme_attrTest3
test1111: attrTest4 = AppTheme_attrTest4

发现直接在layout布局文件中定义的属性值,覆盖了 CustomTextViewTestlayout中引用的stylestyle又覆盖了在obtainStyledAttributes()方法里第三个参数的值,方法第三个参数的值又覆盖了theme里面的属性值。

3.4 为 defStyleRes 赋值

最后,我们改变res/values/styles.xml文件,内容如下:


    //我们app用的主题
    
    
    //layout 中引用的 style 
    
    
    //CustomizeStyle 的引用,第三个参数
    
    
    //默认的属性,第四个参数
    
    

java文件,只修改obtainStyledAttributes()方法的第四个参数为R.attr.CustomizeStyle,改动内容如下:

TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.Customize, R.attr.CustomizeStyle, R.style.DefaultCustomizeStyle);

编译,运行apk,打印log如下:

CustomTextViewTest(Context context, AttributeSet attrs) 
test1111: attrTest1 = attrTest1 in layout
test1111: attrTest2 = CustomizeStyleInLayout_attrTest2
test1111: attrTest3 = CustomizeStyleAttr_In_AppTheme_attrTest3
test1111: attrTest4 = AppTheme_attrTest4

我们发现第四个参数的属性并没有被用上。猜想是不是可能第三个参数的优先级大于第四个,那么我们把第三个参数的样式调整一下,把attrTest2attrTest3属性去掉,好让第四个参数能够生效。res/values/styles.xml改动如下:


    //我们app用的主题
    
    
    //layout 中引用的 style 
    
    
    //CustomizeStyle 的引用,第三个参数
    
    
    //默认的属性,第四个参数
    
    

编译,运行apk,打印log如下:

test1111: CustomTextViewTest(Context context, AttributeSet attrs) 
test1111: attrTest1 = attrTest1 in layout
test1111: attrTest2 = CustomizeStyleInLayout_attrTest2
test1111: attrTest3 = AppTheme_attrTest3
test1111: attrTest4 = AppTheme_attrTest4

我们发现第四个参数的属性依旧没有被用上。那我们尝试修改obtainStyledAttributes()方法,把第三个参数设置为0,保留第四个参数的样式值,改动内容如下:

TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.Customize, 0, R.style.DefaultCustomizeStyle);

编译,运行apk,打印log如下:

CustomTextViewTest(Context context, AttributeSet attrs) 
test1111: attrTest1 = attrTest1 in layout
test1111: attrTest2 = CustomizeStyleInLayout_attrTest2
test1111: attrTest3 = DefaultCustomizeStyle_attrTest3
test1111: attrTest4 = AppTheme_attrTest4

这时候我们发现第四个参数DefaultCustomizeStyle的样式终于生效了。可以总结为:
直接在layout布局文件中定义的属性值,覆盖了 CustomTextViewTestlayout中引用的stylestyle又覆盖了在obtainStyledAttributes()方法里第三个参数的值,有且仅当方法第三个参数的值为0时,obtainStyledAttributes()方法里第四个参数的值才生效,且方法第四个参数的值又覆盖了theme里面的属性值。

4 总结

一路流程走下来,优先级我们最终可以总结为:

直接在layout定义attr> 直接在layout引用style > 方法第三个参数defStyleAttr > 方法第四个参数defStyleRes > theme

下一章节我们讲解,theme的原理。

你可能感兴趣的:(自定义view运用样式)