View 的构造函数有四个:
public View(Context context)
public View(Context context, @Nullable AttributeSet attrs)
public View(Context context, @Nullable AttributeSet attrs, int defStyleAttr)
public View(Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes)
我们在自定义 View 继承 View 的时候,1 和 2 是必须重写的。
第 1 个构造函数是在 java 代码中声明一个 View 时所用。
第 2 个构造函数是在布局文件中声明一个 View 时所用。参数 attrs 可以获取在布局文件中定义的 View 的属性值。
TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.CustomTextView);
String text = ta.getString(R.styleable.CustomTextView_text);
ta.recycle();
构造函数 3 和 4 是可选的,
在讲这两个构造函数之前,我们先来复习一下属性和主题。
View 有很多属性,我们有以下 5 种方法给这些属性赋值:
- xml 中直接定义
- xml 中 style 引用
- theme 中直接定义
......
主题会应用到所有的 View,作为默认的值,即使 View 没有明确定义某个属性,也会给 View 添加属性的值。
- defStyleAttr:第 3 个和 第 4 个构造函数中的参数
先来看下源码中的解释。
An attribute in the current theme that contains a reference to a style resource that supplies default values for the view. Can be 0 to not look for defaults.
可以看到,defStyleAttr 是在主题中定义的,是一个指向 style 的 reference。
其实吧,这种方式和 2 是类似的,最终都是指定一个 style,只不过这种方式通过在主题中添加了一个属性,然后通过指定属性来间接使用 style。
系统的 TextView 就用到了 defStyleAttr。
public TextView(Context context, @Nullable AttributeSet attrs) {
this(context, attrs, com.android.internal.R.attr.textViewStyle);
}
textViewStyle 定义在 platforms/android-xx/data/res/values 的 attrs.xml 中
......
......
- defStyleRes:第 4 个构造函数中的参数
这种方式很简单,和 2 类似,使用 style。只不过 2 是 xml 布局文件中使用,这里是 Java 代码中使用。
这里要注意一下,defStyleAttr 的优先级要高于 defStyleRes,只有当 defStyleAttr 为 0 的时候,才有可能(有可能是因为 1 2 3 的方式优先级更高)使用 defStyleRes。
那么这 5 种方式的优先级是什么样子的呢?
先公布答案:xml 中直接定义 > xml 中 style 引用 > defStyleAttr > defStyleRes > theme 中直接定义
下面通过一个例子验证:
activity_main.xml
CustomTextView.java
@SuppressLint("AppCompatCustomView")
public class CustomTextView extends TextView {
public CustomTextView(Context context) {
this(context, null);
}
public CustomTextView(Context context, @Nullable AttributeSet attrs) {
this(context, attrs, R.attr.textViewColorStyle);
}
public CustomTextView(Context context, @Nullable AttributeSet attrs,
int defStyleAttr) {
this(context, attrs, defStyleAttr, R.style.MyTextViewStyle3);
}
public CustomTextView(Context context, @Nullable AttributeSet attrs,
int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
}
}
attrs.xml
styles.xml
themes.xml
可以看到,我们给 5 种方式都设置了 textColor。
xml 中直接定义(黑色) > xml 中 style 引用(蓝色) > defStyleAttr(绿色) > defStyleRes(橙色) > theme 中直接定义(红色)
依次运行,看结果
运行,文字黑色
删掉 xml 中的直接定义(android:textColor="@android:color/black"),运行,文字蓝色
继续删掉 xml 中 style 引用(style="@style/MyTextViewStyle"),运行,文字绿色
继续将 CustomTextView 中的 defStyleAttr 设为 0
public CustomTextView(Context context, @Nullable AttributeSet attrs) {
this(context, attrs, 0);
}
运行,文字橙色
- 继续将 CustomTextView 中的 defStyleRes 设为 0
public CustomTextView(Context context, @Nullable AttributeSet attrs,
int defStyleAttr) {
this(context, attrs, defStyleAttr, 0);
}
运行,文字红色