
Default theme is dark (Holo dark on >=11), addition is light on <11, Holo.Ligt on >=11 and Holo.Light.DarkActionbar on >=14
20 lines
648 B
XML
20 lines
648 B
XML
<resources xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<style name="AppBaseTheme" parent="android:Theme.Black">
|
|
<!-- backward-compatibility theme options go here -->
|
|
</style>
|
|
|
|
<style name="AppBaseThemeLight" parent="android:Theme.Light">
|
|
<!-- backward-compatibility theme options go here -->
|
|
</style>
|
|
|
|
<style name="AppTheme" parent="AppBaseTheme">
|
|
<!-- customizations that are not API-level specific go here. -->
|
|
</style>
|
|
|
|
<style name="AppThemeLight" parent="AppBaseThemeLight">
|
|
<!-- customizations that are not API-level specific go here. -->
|
|
</style>
|
|
|
|
</resources>
|