mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
3.2 KiB
XML
61 lines
3.2 KiB
XML
13 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!-- Copyright (C) 2011 The Android Open Source Project
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
-->
|
||
|
|
||
|
<resources>
|
||
|
<!-- Variation on the Holo Light theme that styles the Action Bar -->
|
||
|
<style name="Theme.AndroidDevelopers" parent="Theme.Sherlock.Light">
|
||
|
<item name="selectableItemBackground">@drawable/ad_selectable_background</item>
|
||
|
<item name="popupMenuStyle">@style/MyPopupMenu</item>
|
||
|
<item name="dropDownListViewStyle">@style/MyDropDownListView</item>
|
||
|
<item name="abLogo">@drawable/ad_logo</item>
|
||
|
<item name="actionBarTabStyle">@style/MyActionBarTabStyle</item>
|
||
|
<item name="actionDropDownStyle">@style/MyDropDownNav</item>
|
||
|
<item name="android:listChoiceIndicatorMultiple">@drawable/ad_btn_check_holo_light</item>
|
||
|
<item name="android:listChoiceIndicatorSingle">@drawable/ad_btn_radio_holo_light</item>
|
||
|
<!--<item name="android:actionOverflowButtonStyle">@style/MyOverflowButton</item>-->
|
||
|
</style>
|
||
|
|
||
|
<!-- style the overflow menu -->
|
||
|
<style name="MyPopupMenu" parent="Widget.Sherlock.Light.ListPopupWindow">
|
||
|
<item name="android:popupBackground">@drawable/ad_menu_dropdown_panel_holo_light</item>
|
||
|
</style>
|
||
|
|
||
|
<!-- style the items within the overflow menu -->
|
||
|
<style name="MyDropDownListView" parent="Widget.Sherlock.ListView.DropDown">
|
||
|
<item name="android:listSelector">@drawable/ad_selectable_background</item>
|
||
|
</style>
|
||
|
|
||
|
<!-- style for the tabs -->
|
||
|
<style name="MyActionBarTabStyle" parent="Widget.Sherlock.Light.ActionBar.TabView">
|
||
|
<item name="android:background">@drawable/actionbar_tab_bg</item>
|
||
|
<item name="android:paddingLeft">6dp</item>
|
||
|
<item name="android:paddingRight">6dp</item>
|
||
|
</style>
|
||
|
|
||
|
<!-- style the list navigation -->
|
||
|
<style name="MyDropDownNav" parent="Widget.Sherlock.Light.Spinner">
|
||
|
<item name="android:background">@drawable/ad_spinner_background_holo_light</item>
|
||
|
<item name="android:popupBackground">@drawable/ad_menu_dropdown_panel_holo_light</item>
|
||
|
<item name="android:dropDownSelector">@drawable/ad_selectable_background</item>
|
||
|
</style>
|
||
|
|
||
|
<!-- the following can be used to style the overflow menu button
|
||
|
only do this if you have an *extremely* good reason to!! -->
|
||
|
<!--<style name="MyOverflowButton" parent="Widget.Sherlock.ActionButton.Overflow">
|
||
|
<item name="android:src">@android:drawable/ic_menu_view</item>
|
||
|
<item name="android:background">@drawable/action_button_background</item>
|
||
|
</style>-->
|
||
|
</resources>
|