annotate app/src/main/res/values/styles.xml @ 2:3485a304a057

adding new branch with the original tutorial code -- later merge to main and mod
author kshalle
date Thu, 23 Apr 2015 10:53:54 -0700
parents
children
rev   line source
kshalle@1 1 <resources>
kshalle@1 2
kshalle@1 3 <!-- Base application theme. -->
kshalle@1 4 <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
kshalle@1 5 <!-- Customize your theme here. -->
kshalle@1 6 </style>
kshalle@1 7
kshalle@1 8 <style name="FullscreenTheme" parent="android:Theme.NoTitleBar">
kshalle@1 9 <item name="android:windowContentOverlay">@null</item>
kshalle@1 10 <item name="android:windowBackground">@null</item>
kshalle@1 11 <item name="metaButtonBarStyle">@style/ButtonBar</item>
kshalle@1 12 <item name="metaButtonBarButtonStyle">@style/ButtonBarButton</item>
kshalle@1 13 </style>
kshalle@1 14
kshalle@1 15 <!-- Backward-compatible version of ?android:attr/buttonBarStyle -->
kshalle@1 16 <style name="ButtonBar">
kshalle@1 17 <item name="android:paddingLeft">2dp</item>
kshalle@1 18 <item name="android:paddingTop">5dp</item>
kshalle@1 19 <item name="android:paddingRight">2dp</item>
kshalle@1 20 <item name="android:paddingBottom">0dp</item>
kshalle@1 21 <item name="android:background">@android:drawable/bottom_bar</item>
kshalle@1 22 </style>
kshalle@1 23
kshalle@1 24 <!-- Backward-compatible version of ?android:attr/buttonBarButtonStyle -->
kshalle@1 25 <style name="ButtonBarButton" />
kshalle@1 26
kshalle@1 27 </resources>