自定义样式有很多好处:
- 从用户体验的角度看,程序有统一的风格,看起来舒服;
- 从程序设计者的角度看,将自己的界面元素分类并定义统一的样式,有利于维护和管理;
- 从项目组的角度看,有些系统有鲜明的行业特点和公司特点,这些可以用样式定义来辅助实现。
下面看一个例子:
下面是styles.xml文件中相关的部分:
<style name="text_font">
<item name="android:textColor">#05b</item>
<item name="android:textSize">18sp</item>
<item name="android:textStyle">bold</item>
</style>
<style name="content_font">
<item name="android:textColor">#0f5</item>
<item name="android:textSize">18sp</item>
<item name="android:textStyle">normal</item>
</style>
<style name="hint_text_font" parent="text_font">
<item name="android:textColor">#f00</item>
</style>
我们在界面元素中这样引用:
<TextView style="@style/content_font"
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<Button style="@style/text_font"
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/test_IntentService" />
<TextView style="@style/hint_text_font"
android:id="@+id/hint"
android:text="@string/hint_text"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
很简单吧,哈哈。