原文链接:http://developer.android.com/guide/topics/ui/themes.html 原文标题:Applying Styles and Themes 原文版本:Android 2.2?r1 - 05 Aug 2010 8:29 中文翻译:Jack Yu????????????(yjmjack@gmail.com) 仅供非盈利使用,转载请保留出处及译者信息 ? 应用Style和Theme style是用于指定View或window的外观、格式的一系列属性集合。style可以指定诸如高度、补白(padding)、字体颜色、字体大小、背景颜色等属性。style定义在一个不同于用来定义布局的XML资源中。 Android中的Style与网页设计中的层叠样式表有着相似的原理——它们允许你将设计和内容分离开来。 例如:通过使用一个style,你可以将下面这个布局XML: <TextView
? ??android:layout_width="fill_parent"
? ??android:layout_height="wrap_content"
? ??android:textColor="#00FF00"
? ??android:typeface="monospace"
? ??android:text="@string/hello"?/>