aboutsummaryrefslogtreecommitdiff
path: root/bridge/tests/res/testApp/MyApplication/src/main/res/values/styles.xml
blob: 7b338d1dc6e3d5758430841b7c3111da23860455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="android:Theme.Material.Light.DarkActionBar">
        <item name="myattr">@integer/ten</item>
        <item name="android:colorError">#f00</item>
        <item name="android:colorActivatedHighlight">#c0f0</item>
    </style>

    <style name="ThemableWidgetStyle">
        <item name="android:layout_height">150dp</item>
    </style>

    <style name="WindowBackgroundTheme" parent="android:Theme.Material.Light.DarkActionBar">
        <item name="android:colorAccent">#ffff0000</item>
        <item name="android:windowBackground">@drawable/theme_attribute_drawable</item>
    </style>

</resources>