這篇文章將分析系統(tǒng)ProgressBar的主題及樣式
當前應用環(huán)境:
compileSdkVersion 24
targetSdkVersion 24
Theme.AppCompat.Light
appcompat-v7:25.3.1
先來看看系統(tǒng)ProgressBar的繼承結構
By default, the progress bar is a spinning wheel (an indeterminate indicator).
進度條默認情況下為無進度圓形樣式
如果改成條形XML中使用style="@android:style/Widget.ProgressBar.Horizontal"
我們來驗證一下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ProgressBar
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
android24模擬器顯示效果:
但是在android19模擬器上的效果為:
更神奇的是android19模擬器上改變一下背景顏色:
雖然默認都是無進度的圓形,但是效果為什么不一樣?
主題樣式原碼分析
關于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,查看下圖
<style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/>
<style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
//Theme.AppCompat.Light主題阻肩,最終都會采用該主題,下面會具體分析
<style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
</style>
查看Base.Theme.AppCompat.Light运授,不同Android版本對應相應的values.xml
appcompat-v7包 values-v23.xml
<style name="Base.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light"/>
<style name="Base.V23.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light">
...
</style>
appcompat-v7包 values-v22.xml
<style name="Base.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light"/>
<style name="Base.V22.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light">
...
</style>
appcompat-v7包 values-v21.xml
<style name="Base.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light"/>
<style name="Base.V21.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
...
</style>
最終到達之前提到的 appcompat-v7包 values.xml
//Theme.AppCompat.Light主題烤惊,最終都會采用該主題
<style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
</style>
查看Platform.AppCompat.Light
注意乔煞,這里就是為什么不同android 版本顯示的效果不同的原因。
appcompat-v7包 values-v25.xml
<style name="Platform.AppCompat.Light" parent="Platform.V25.AppCompat.Light"/>
<style name="Platform.V25.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
</style>
appcompat-v7包 values-v21.xml
<style name="Platform.AppCompat.Light" parent="Platform.V21.AppCompat.Light"/>
<style name="Platform.V21.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
...
</style>
5.0及以上主題為android:Theme.Material
appcompat-v7包 values-v14.xml
<style name="Platform.AppCompat.Light" parent="Platform.V14.AppCompat.Light"/>
<style name="Platform.V14.AppCompat.Light" parent="Platform.V11.AppCompat.Light">
...
</style>
appcompat-v7包 values-v11.xml
<style name="Platform.AppCompat.Light" parent="Platform.V11.AppCompat.Light"/>
<style name="Platform.V11.AppCompat.Light" parent="android:Theme.Holo.Light">
...
</style>
3.0及以上主題為android:Theme.Holo
appcompat-v7包 values.xml
<style name="Platform.AppCompat.Light" parent="android:Theme.Light">
...
</style>
3.0以下主題為android:Theme
到此與Resources類中的selectSystemTheme()方法便能對應上了柒室。
我們來分析1.gif(Android 24):
系統(tǒng)根據Android版本渡贾,這里會選擇android:Theme.Material.Light.NoActionBar主題,繼承自android:Theme.Material.Light雄右。
themes_material.xml
<style name="Theme.Material.Light" parent="Theme.Light">
<!-- Widget styles -->
<item name="progressBarStyle">@style/Widget.Material.Light.ProgressBar</item>
</style>
<style name="Widget.Material.Light.ProgressBar" parent="Widget.Material.ProgressBar"/>
styles_material.xml
<style name="Widget.Material.ProgressBar" parent="Widget.ProgressBar">
<item name="indeterminateDrawable">@drawable/progress_medium_material</item>
</style>
progress_medium_material.xml
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/vector_drawable_progress_bar_medium" >
<target
android:name="progressBar"
android:animation="@anim/progress_indeterminate_material" />
<target
android:name="root"
android:animation="@anim/progress_indeterminate_rotation_material" />
</animated-vector>
這里不再詳細分析此Drawable空骚,這里涉及到AnimatedVectorDrawable, SVG等相關內容
可以參考我的另一篇文章Android SVG
至此,1.gif的效果便分析完成了不脯。
我們再來分析2.gif 及3.gif
其實這兩張圖片是完全一模一樣的府怯,只不過圖2因為背景與控件Drawable中的部分內容顏色相同,沒有顯示出來而已防楷。
這兩張圖相對應的android版本為19,主題為android:Theme.Holo.Light
themes_holo.xml
<style name="Theme.Holo.Light" parent="Theme.Light">
<!-- Widget styles -->
<item name="progressBarStyle">@style/Widget.Holo.Light.ProgressBar</item>
</style>
styles_holo.xml
<style name="Widget.Holo.Light.ProgressBar" parent="Widget.Holo.ProgressBar" />
<style name="Widget.Holo.ProgressBar" parent="Widget.ProgressBar">
<item name="indeterminateDrawable">@drawable/progress_medium_holo</item>
</style>
progress_medium_holo.xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
//兩張圖片同時相反方向旋轉牺丙,同一時間旋轉的角度不同,造成自轉的效果复局。
<item>
<rotate
android:drawable="@drawable/spinner_48_outer_holo"
android:pivotX="50%"
android:pivotY="50%"
android:fromDegrees="0"
android:toDegrees="1080" />
</item>
<item>
<rotate
android:drawable="@drawable/spinner_48_inner_holo"
android:pivotX="50%"
android:pivotY="50%"
android:fromDegrees="720"
android:toDegrees="0" />
</item>
</layer-list>
@drawable/spinner_48_outer_holo
@drawable/spinner_48_inner_holo
至此冲簿,2.gif 3.gif的效果便分析完了。
接下來我們去掉Application主題亿昏,看一下效果:
因為當前的的targetSdkVersion 是24峦剔,所以Resources.selectSystemTheme()返回的主題是R.style.Theme_DeviceDefault_Light_DarkActionBar。
我們分析下原碼:
themes_device_defaults.xml
<style name="Theme.DeviceDefault.Light.DarkActionBar" parent="Theme.Material.Light.DarkActionBar" />
themes_material.xml 貌似沒有看到相關的屬性
<style name="Theme.Material.Light.DarkActionBar">
<item name="actionBarWidgetTheme">@null</item>
<item name="actionBarTheme">@style/ThemeOverlay.Material.Dark.ActionBar</item>
<item name="popupTheme">@style/ThemeOverlay.Material.Light</item>
<item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
<item name="colorPrimary">@color/primary_material_dark</item>
</style>
themes_material.xml 父類主題
<!-- Material theme (light version). -->
<style name="Theme.Material.Light" parent="Theme.Light">
<!-- Widget styles -->
<item name="progressBarStyle">@style/Widget.Material.Light.ProgressBar</item>
<!-- Color palette -->
//progressbar的indeterminateDrawable中控件的顏色設置為android:tint="?attr/colorControlActivated"
<item name="colorControlActivated">?attr/colorAccent</item>
//最終指向colorAccent的顏色
<item name="colorAccent">@color/accent_material_light</item>
</style>
styles_material.xml
<style name="Widget.Material.Light.ProgressBar" parent="Widget.Material.ProgressBar"/>
再一次看到Widget.Material.ProgressBar角钩。
colors_material.xml
<color name="accent_material_light">@color/material_deep_teal_500</color>
<color name="material_deep_teal_500">#ff009688</color>//正是我們控件的顏色吝沫。
所以progressbar的indeterminateDrawable沒有改變,只是顏色改變了递礼。