1<resources xmlns:android="http://schemas.android.com/apk/res/android">
2
3 <!--
4 Base application theme, dependent on API level. This theme is replaced
5 by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
6 -->
7 <style name="AppBaseTheme" parent="android:Theme.Light">
8 <!--
9 Theme customizations available in newer API levels can go in
10 res/values-vXX/styles.xml, while customizations related to
11 backward-compatibility can go here.
12 -->
13 </style>
14
15 <!-- Application theme. -->
16 <style name="AppTheme" parent="AppBaseTheme">
17 <!-- All customizations that are NOT specific to a particular API-level can go here. -->
18 </style>
19
20
21 <style name="sectionHeader" parent="android:Widget.Holo.Light.TextView">
22 <item name="android:drawableBottom">@drawable/section_header</item>
23 <item name="android:drawablePadding">4dp</item>
24 <item name="android:layout_marginTop">8dp</item>
25 <item name="android:textSize">14sp</item>
26 <item name="android:textAllCaps">true</item>
27 <item name="android:textColor">#5b5b5b</item>
28 <item name="android:textStyle">bold</item>
29 </style>
30
31 <style name="Divider">
32 <item name="android:layout_width">match_parent</item>
33 <item name="android:layout_height">1.5dp</item>
34 <item name="android:background">#b7b7b7</item>
35 </style>
36
37</resources>