首页 > 其他 > 详细

User interface

时间:2015-12-02 20:49:33      阅读:261      评论:0      收藏:0      [点我收藏+]

 

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" />

 

User interface

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!