样式资源:
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 定义一个样式,指定文字大小和颜色 -->
<style name="my_style_1">
<item name="android:textSize">20sp</item>
<item name="android:textColor">#233</item>
</style>
<!-- 定义一个样式,继承前一个颜色 -->
<style name="my_style_2" parent="@style/my_style_1">
<item name="android:background">#3e3e3e</item>
<!-- 覆盖父样式的属性 -->
<item name="android:textColor">#eee</item>
</style>
</resources>
主题资源:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="theme_style_1">
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
<!-- 引用其他样式 -->
<item name="android:windowFrame">@drawable/window_boder</item>
<item name="android:windowBackground">@drawable/pic_android</item>
</style>
</resources>
在java代码中:
super.onCreate(savedInstanceState);
setTheme(R.style.theme_style_1);//setContentView前调用
setContentView(R.layout.clip_layout);
或者
manifest文件中<application...>或<activity...>中加上
android:theme="@style/theme_style_1"