Applying Styles and Themes - 应用Style和Theme - Android官方文档中文翻译_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > Applying Styles and Themes - 应用Style和Theme - Android官方文档中文翻译

Applying Styles and Themes - 应用Style和Theme - Android官方文档中文翻译

 2011/1/1 9:07:56  ithinkfeed  http://ithinkfeed.javaeye.com  我要评论(0)
  • 摘要:原文链接:http://developer.android.com/guide/topics/ui/themes.html原文标题:ApplyingStylesandThemes原文版本:Android2.2r1-05Aug20108:29中文翻译:JackYu(yjmjack@gmail.com)仅供非盈利使用,转载请保留出处及译者信息应用Style和Themestyle是用于指定View或window的外观、格式的一系列属性集合。style可以指定诸如高度、补白(padding)、字体颜色
  • 标签:android 文档 翻译 应用 官方文档

原文链接: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)

仅供非盈利使用,转载请保留出处及译者信息

?

应用StyleTheme

style是用于指定Viewwindow的外观、格式的一系列属性集合。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"?/>

发表评论
用户名: 匿名