• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<resources>
3
4    <!--
5        Base application theme, dependent on API level. This theme is replaced
6        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
7    -->
8    <style name="AppBaseTheme" parent="Theme.AppCompat.Light">
9        <!--
10            Theme customizations available in newer API levels can go in
11            res/values-vXX/styles.xml, while customizations related to
12            backward-compatibility can go here.
13        -->
14    </style>
15
16    <!-- Application theme. -->
17    <style name="AppTheme" parent="AppBaseTheme">
18        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
19        <item name="android:windowActionBar">false</item>
20        <item name="android:windowNoTitle">true</item>
21    </style>
22
23    <style name="FullscreenTheme" parent="Theme.AppCompat.Light">
24        <item name="android:windowContentOverlay">@null</item>
25        <item name="android:windowBackground">@null</item>
26        <item name="android:windowActionBar">false</item>
27        <item name="android:windowNoTitle">true</item>
28    </style>
29
30</resources>