User interface

时间:2015-12-02 20:49:33   收藏:0   阅读:263

 

Styles and Themes

value/style

<style name="CodeFont" parent="@android:style/TextAppearance.Medium">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">#00FF00</item>
<item name="android:typeface">monospace</item>
</style>
<style name="CodeFont.Color">
<item name="android:textColor">#FF0000</item>
</style>

<style name ="CodeFont.Color.Size">
<item name="android:textSize">20sp</item>
<item name ="android:background">#000000</item>
</style>

 

mainactivity.xml

<TextView
style="@style/CodeFont.Color.Size"
android:text="@string/hello_world" />

 

原文:http://www.cnblogs.com/guozhiping/p/5013873.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!