5.User Interface/Styles and Themes

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="#00FF00"
    android:typeface="monospace"
    android:text="@string/hello" />

could be changed into

// res/value/style
<style name="CodeFont" >
        <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>
<TextView
        style="@style/CodeFont"
        android:text="@string/hello_world" />

 

posted @ 2014-11-07 20:51  Mirrorhanman  阅读(118)  评论(0编辑  收藏  举报