123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <resources>
- <!--
- Base application theme, dependent on API level. This theme is replaced
- by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
- -->
- <style name="AppBaseTheme" parent="android:Theme.Light">
- <!--
- Theme customizations available in newer API levels can go in
- res/values-vXX/styles.xml, while customizations related to
- backward-compatibility can go here.
- -->
- </style>
- <!-- Application theme. -->
- <style name="AppTheme" parent="AppBaseTheme">
- <!-- All customizations that are NOT specific to a particular API-level can go here. -->
- </style>
- <style name="DoneBarActionButton" parent="android:style/Widget.Holo.ActionButton">
- <item name="android:layout_height">match_parent</item>
- <item name="android:layout_width">0dp</item>
- <item name="android:layout_weight">1</item>
- <item name="android:focusable">true</item>
- <item name="android:orientation">horizontal</item>
- </style>
- <style name="DoneBarActionButtonImage">
- <item name="android:layout_height">wrap_content</item>
- <item name="android:layout_width">wrap_content</item>
- <item name="android:padding">4dp</item>
- </style>
- <style name="DoneBarActionButtonText">
- <item name="android:layout_height">wrap_content</item>
- <item name="android:layout_width">wrap_content</item>
- <item name="android:textAppearance">?android:attr/actionMenuTextAppearance</item>
- <item name="android:textColor">?android:attr/actionMenuTextColor</item>
- <item name="android:orientation">horizontal</item>
- <item name="android:singleLine">true</item>
- <item name="android:ellipsize">none</item>
- <item name="android:padding">4dp</item>
- </style>
- <style name="ProfileManagerListBadge">
- <item name="android:paddingTop">4dp</item>
- <item name="android:paddingBottom">4dp</item>
- <item name="android:paddingLeft">4dp</item>
- <item name="android:paddingRight">4dp</item>
- <item name="android:background">@drawable/profile_protocol_badge</item>
- <item name="android:textColor">@color/dark_grey</item>
- </style>
- </resources>
|