1. 样式和主题的区别,作用范围不同,样式都是作用在一个小控件,
主题作用一个activity,或者整个应用程序
样式都在布局文件里面配置,主题都在清单文件配置
2. 使用多的做成样式: 方便修改
3. values-----styles.xml: 添加样式
<stylename="text_content_style">
<itemname="android:layout_width">wrap_content</item>
<itemname="android:layout_height">wrap_content</item>
<item name="android:textColor">#0000ff</item>
<item name="android:textSize">20sp</item>
</style>
使用样式: <TextView style="@style/text_content_style"
android:text="你好啊" />
4. values-----styles.xml: 添加主题
<stylename="red_bg_theme">
<item name="android:background">#33ff0000</item>
</style>
使用主题(需要在配置文件中使用配置):
<application
android:theme="@style/red_bg_theme"
或
<activity
android:theme="@style/red_bg_theme"
二. 自定义样式和主题
1. 研究系统的样式
E:\sdk1\adt-bundle-windows-x86-20131030\sdk\platforms\android-19\data\res\values
系统的样式---------------------查看控件的样式
把某一个控件的样式拷贝到程序values-----styles.xml:中,改名覆盖
2. 研究系统的主题
E:\sdk1\adt-bundle-windows-x86-20131030\sdk\platforms\android-19\data\res\values
拷贝—自定义
主题可以继承