系统主题样式-以ProgressBar为例
这篇文章将分析系统ProgressBar的主题及样式
当前应用环境:
compileSdkVersion 24
targetSdkVersion 24
Theme.AppCompat.Light
appcompat-v7:25.3.1
先来看看系统ProgressBar的继承结构
文章图片
ProgressBar继承自View,常见的子类包括SeekBar及RatingBar
By default, the progress bar is a spinning wheel (an indeterminate indicator).我们来验证一下
进度条默认情况下为无进度圆形样式
如果改成条形XML中使用style="@android:style/Widget.ProgressBar.Horizontal"
android24模拟器显示效果:
文章图片
1.gif 但是在android19模拟器上的效果为:
文章图片
2.gif 更神奇的是android19模拟器上改变一下背景颜色:
文章图片
3.gif 虽然默认都是无进度的圆形,但是效果为什么不一样?
主题样式原码分析 关于Activity是如何加载对应的主题,请参考:https://www.cnblogs.com/chenxibobo/p/6136681.html
总之最后调用Resources中的selectSystemTheme函数。
Resources.java
public static int selectDefaultTheme(int curTheme, int targetSdkVersion) {
return selectSystemTheme(curTheme, targetSdkVersion,
com.android.internal.R.style.Theme,
com.android.internal.R.style.Theme_Holo,
com.android.internal.R.style.Theme_DeviceDefault,
com.android.internal.R.style.Theme_DeviceDefault_Light_DarkActionBar);
}public static int selectSystemTheme(int curTheme, int targetSdkVersion, int orig, int holo,
int dark, int deviceDefault) {
if (curTheme != 0) {//如果设置了主题,直接返回
return curTheme;
}
//没有设置的情况下,如果targetSdkVersion 小于11则返回R.style.Theme
if (targetSdkVersion < Build.VERSION_CODES.HONEYCOMB) {
return orig;
}
//targetSdkVersion 如果小于14则返回R.style.Theme_Holo
if (targetSdkVersion < Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
return holo;
}
//targetSdkVersion 如果小于24则返回R.style.Theme_DeviceDefault
if (targetSdkVersion < Build.VERSION_CODES.N) {
return dark;
}
return deviceDefault;
//返回R.style.Theme_DeviceDefault_Light_DarkActionBar
}
我们当前设置了主题,并且主题为Theme.AppCompat.Light。
appcompat-v7包 values.xml
//对于父类主题,不同Android版本对应不同版本的values.xml,查看下图//Theme.AppCompat.Light主题,最终都会采用该主题,下面会具体分析
查看Base.Theme.AppCompat.Light,不同Android版本对应相应的values.xml
文章图片
image.png appcompat-v7包 values-v23.xml
...
appcompat-v7包 values-v22.xml
...
appcompat-v7包 values-v21.xml
...
最终到达之前提到的 appcompat-v7包 values.xml
//Theme.AppCompat.Light主题,最终都会采用该主题
查看Platform.AppCompat.Light
文章图片
11.png 注意,这里就是为什么不同android 版本显示的效果不同的原因。 appcompat-v7包 values-v25.xml
appcompat-v7包 values-v21.xml
...
5.0及以上主题为android:Theme.Material appcompat-v7包 values-v14.xml
...
appcompat-v7包 values-v11.xml
...
3.0及以上主题为android:Theme.Holo appcompat-v7包 values.xml
...
3.0以下主题为android:Theme 到此与Resources类中的selectSystemTheme()方法便能对应上了。
我们来分析1.gif(Android 24): 系统根据Android版本,这里会选择android:Theme.Material.Light.NoActionBar主题,继承自android:Theme.Material.Light。
themes_material.xml
- @style/Widget.Material.Light.ProgressBar
styles_material.xml
- @drawable/progress_medium_material
progress_medium_material.xml
这里不再详细分析此Drawable,这里涉及到AnimatedVectorDrawable, SVG等相关内容
可以参考我的另一篇文章Android SVG
至此,1.gif的效果便分析完成了。
我们再来分析2.gif 及3.gif 其实这两张图片是完全一模一样的,只不过图2因为背景与控件Drawable中的部分内容颜色相同,没有显示出来而已。
这两张图相对应的android版本为19,主题为android:Theme.Holo.Light
themes_holo.xml
- @style/Widget.Holo.Light.ProgressBar
styles_holo.xml
- @drawable/progress_medium_holo
progress_medium_holo.xml
//两张图片同时相反方向旋转,同一时间旋转的角度不同,造成自转的效果。
-
-
@drawable/spinner_48_outer_holo
文章图片
image.png
@drawable/spinner_48_inner_holo
文章图片
image.png 至此,2.gif 3.gif的效果便分析完了。
接下来我们去掉Application主题,看一下效果:
文章图片
progress.gif 因为当前的的targetSdkVersion 是24,所以Resources.selectSystemTheme()返回的主题是R.style.Theme_DeviceDefault_Light_DarkActionBar。
我们分析下原码:
themes_device_defaults.xml
themes_material.xml 貌似没有看到相关的属性
- @null
- @style/ThemeOverlay.Material.Dark.ActionBar
- @style/ThemeOverlay.Material.Light
- @color/primary_dark_material_dark
- @color/primary_material_dark
themes_material.xml 父类主题
- @style/Widget.Material.Light.ProgressBar
//progressbar的indeterminateDrawable中控件的颜色设置为android:tint="?attr/colorControlActivated"
- ?attr/colorAccent
//最终指向colorAccent的颜色
- @color/accent_material_light
styles_material.xml
再一次看到Widget.Material.ProgressBar。
colors_material.xml
@color/material_deep_teal_500
#ff009688 //正是我们控件的颜色。
所以progressbar的indeterminateDrawable没有改变,只是颜色改变了。
参考: 【系统主题样式-以ProgressBar为例】https://www.cnblogs.com/chenxibobo/p/6136681.html
推荐阅读
- 表达赞赏与感谢-身体
- 破界突围之路(不要把MES系统做成质量管理系统)
- Deepin系统基于LDAP统一认证
- 深入浅出 —— 操作系统知识点大复习 !
- 第21期4组+雪凝+第1周第4次作业
- 通过Dapr实现一个简单的基于.net的微服务电商系统(十九)——分布式事务之Saga模式
- Linux系统编程|Linux线程间通信之条件变量(十七)
- 更改AlertDialog系统颜色
- 【Linux入门第3天】-Linux入门之计算机与操作系统
- 点线面体——笔记