Quantcast
Channel: Developer Feed - Snippet
Viewing all articles
Browse latest Browse all 178

How do you define styles in Android?

$
0
0

Answer
In order to define a styles that can be used as theme for your app widget or layout, define the styles as a resource in the file. The resource file can have any name but ends with .xml

e.g. the resource file can be named as styles.xml in the res/values directory of your project as:

res/values/styles.xml

  1. <?xmlversion="1.0"encoding="utf-8"?>
  2.  
  3. <resources>
  4.  <stylename="CodeFont"parent="@android:style/TextAppearance.Medium">
  5.       <itemname="android:layout_width">fill_parent</item> 
  6.      <itemname="android:layout_height">wrap_content</item>
  7.        <itemname="android:textColor">#00FF00</item> 
  8.      <itemname="android:typeface">monospace</item> 
  9.   </style>
  10. </resources>

Viewing all articles
Browse latest Browse all 178

Trending Articles