本篇提到的方法,是通过更改应用应用主题中的style的属性,来使得自定义布局可以应用到全局。
更改theme默认颜色
Theme是应用到整个application或activity的样式,其实也是一种style,只不过比较庞大。使用api 25新建module,默认使用继承与“Theme.AppCompat.Light.DarkActionBar”的“AppTheme”主题,并更改了三个颜色属性。AppTheme定义在module的values/styles.xml中。更改这三个颜色,发现分别对应app的标题栏、手机顶栏和组件默认颜色。将三者分别改为红、绿、蓝三色,以下是代码及对应的界面:
事实上,这三个属性是在最底层的Theme样式中定义的,因此可以应用到全部组件。
自定义全局组件
既然可以通过更改colorAccent来改变所有组件的颜色,那么肯定可以通过类似的方式,定义组件样式,并在全局使用。下面来自定义一个全局button。可以想到,应该有一个属性,是用来指定button样式的,只要重为这个属性赋值即可。事实上,这些属性都是属于android.R.attr的,具体的说明可见官方文档R.attr。而自定义button,需要使用buttonStyle属性。
默认Button样式
buttonStyle的具体样式也是在Theme中指定的:<item name="buttonStyle">@style/Widget.Button</item>
。顺便说下Theme样式的定义可以在C:\Users\【username】\AppData\Local\Android\sdk\platforms\android-xx\data\res\values
中找到。Widget.Button定义如下:
<style name="Widget.Button">
<item name="background">@drawable/btn_default</item>
<item name="focusable">true</item>
<item name="clickable">true</item>
<item name="textAppearance">?attr/textAppearanceSmallInverse</item>
<item name="textColor">@color/primary_text_light</item>
<item name="gravity">center_vertical|center_horizontal</item>
</style>
其中@drawable/btn_default的定义如下:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_window_focused="false" android:state_enabled="true"
android:drawable="@drawable/btn_default_normal" />
<item android:state_window_focused="false" android:state_enabled="false"
android:drawable="@drawable/btn_default_normal_disable" />
<item android:state_pressed="true"
android:drawable="@drawable/btn_default_pressed" />
<item android:state_focused="true" android:state_enabled="true"
android:drawable="@drawable/btn_default_selected" />
<item android:state_enabled="true"
android:drawable="@drawable/btn_default_normal" />
<item android:state_focused="true"
android:drawable="@drawable/btn_default_normal_disable_focused" />
<item
android:drawable="@drawable/btn_default_normal_disable" />
</selector>
这之中的drawable文件已经无法右键go to declaration了,所以是图片文件。可在C:\Users\【username】\AppData\Local\Android\sdk\platforms\android-xx\data\res\drawable-mdpi
中找到对应的图片。默认样式如下:
自定义Button样式
在module的style.xml中自定义样式,并用其重定义buttonStyle属性:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="buttonStyle">@style/MyButtonStyle</item>
</style>
<style name="MyButtonStyle" parent="@android:style/Widget.Button">
<item name="android:background">#0000ff</item>
</style>
由于默认样式是Widget.Button,因此这里直接继承它,然后更改希望更改的属性。这样不想更改的属性就不需要再自己定义一遍。这里把background属性重定义成蓝色。然后在应用的AppTheme样式中,将buttonStyle属性指定为自定义的MyButtonStyle样式。注意,使用系统的style或属性,名称前要使用"android:"。完成后布局中button的样式如下:
以这种方式,类似地,可以将所有组件更改为自定义样式。而且就buttonStyle来说,我们已经知道此属性定义在Theme这个style中,因此在所有基于Theme的样式中,都可以使用这种方法,而不担心没有对应的属性。