Statistics
| Branch: | Tag: | Revision:

notecipher / app / res / values / styles.xml @ f15873c8

History | View | Annotate | Download (2.69 KB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<resources xmlns:android="http://schemas.android.com/apk/res/android"
3
           xmlns:tools="http://schemas.android.com/tools">
4

    
5
    <!--
6
        Base application theme, dependent on API level. This theme is replaced
7
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
8
    -->
9
    <style name="AppBaseTheme" parent="@style/Theme.Sherlock">
10
        <!--
11
            Theme customizations available in newer API levels can go in
12
            res/values-vXX/styles.xml, while customizations related to
13
            backward-compatibility can go here.
14
        -->
15
        <item name="numberPickerStyle">@style/NPWidget.Holo.NumberPicker</item>
16
    </style>
17

    
18
    <!-- Application theme. -->
19
    <style name="AppTheme" parent="AppBaseTheme">
20
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
21
        <item name="actionBarStyle">@style/Widget.NoteCipherTheme.ActionBar</item>
22
            <item name="android:actionBarStyle" tools:targetApi="11">@style/Widget.NoteCipherTheme.ActionBar</item>
23
    </style>
24
    
25
    <style name="Widget.NoteCipherTheme.ActionBar" parent="Widget.Sherlock.ActionBar">
26
            <item name="android:background">@color/dark_green_actionbar</item>
27
            <item name="background">@color/dark_green_actionbar</item>
28
            <item name="android:titleTextStyle" tools:targetApi="11">@style/NoteCipherTheme.ActionBar.TitleTextStyle</item>
29
                <item name="titleTextStyle">@style/NoteCipherTheme.ActionBar.TitleTextStyle</item>
30
        </style>
31

    
32
    <style name="NoteCipherTheme.ActionBar.TitleTextStyle" parent="TextAppearance.Sherlock.Widget.ActionBar.Title">
33
                <item name="android:textColor">@color/greenish_white</item>
34
                <item name="android:textSize">22sp</item>
35
        </style>
36
    
37
    <style name="padtext" parent="@android:style/TextAppearance.Medium">
38
        <item name="android:textColor">@color/gray</item>
39
        <item name="android:typeface">monospace</item>
40
        <item name="android:textSize">24sp</item>
41
    </style>
42

    
43
    <style name="ButtonTextSmall">
44
        <item name="android:layout_width">fill_parent</item>
45
        <item name="android:layout_height">wrap_content</item>
46
        <item name="android:textColor">@color/white</item>
47
        <item name="android:gravity">center</item>
48
        <item name="android:layout_margin">1dp</item>
49
        <item name="android:textSize">20sp</item>
50
        <item name="android:shadowColor">@color/black</item>
51
        <item name="android:shadowDx">1</item>
52
        <item name="android:shadowDy">1</item>
53
        <item name="android:shadowRadius">2</item>
54
    </style>
55

    
56
    <style name="padtitle" parent="padtext">
57
        <item name="android:background">@drawable/round_borders</item>
58
    </style>
59

    
60
</resources>