aboutsummaryrefslogtreecommitdiffstats
path: root/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/apicheck/themes.xml
blob: 478940ed10e417e4044100050046dc256b7c89d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="Theme" parent="android:Theme"/>

    <style name="Theme.Test" parent="android:style/Theme.Light">
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowContentOverlay">@null</item>
        <!-- Requires API 14 -->
        <item name="android:windowBackground">  @android:color/holo_red_light </item>
    </style>

    <style name="Theme.Test.Transparent">
        <item name="android:windowBackground">@android:color/transparent</item>
    </style>

</resources>