2009-03-03 19:32:27 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<!--
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2008 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>
|
2015-06-22 19:48:07 -07:00
|
|
|
<style name="Theme.Light.CustomOverscroll" parent="@android:style/Theme.DeviceDefault">
|
|
|
|
|
<item name="android:colorEdgeEffect">@color/folder_edge_effect_color</item>
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<style name="Theme.Dark.CustomOverscroll" parent="@android:style/Theme.DeviceDefault">
|
|
|
|
|
<item name="android:colorEdgeEffect">@color/workspace_edge_effect_color</item>
|
|
|
|
|
</style>
|
2011-08-09 14:14:23 -07:00
|
|
|
|
2015-05-12 19:05:30 -07:00
|
|
|
<style name="Icon">
|
2010-01-08 15:07:00 -08:00
|
|
|
<item name="android:layout_width">match_parent</item>
|
|
|
|
|
<item name="android:layout_height">match_parent</item>
|
2011-06-19 12:41:22 -07:00
|
|
|
<item name="android:layout_gravity">center</item>
|
2011-04-14 16:08:02 -07:00
|
|
|
<item name="android:gravity">center_horizontal</item>
|
|
|
|
|
<item name="android:singleLine">true</item>
|
|
|
|
|
<item name="android:ellipsize">marquee</item>
|
2012-02-29 13:33:22 -08:00
|
|
|
<item name="android:textColor">@color/workspace_icon_text_color</item>
|
2011-04-14 16:08:02 -07:00
|
|
|
<item name="android:shadowRadius">2.0</item>
|
|
|
|
|
<item name="android:shadowColor">#B0000000</item>
|
2013-09-18 15:14:17 -07:00
|
|
|
<item name="android:fontFamily">sans-serif-condensed</item>
|
2009-03-03 19:32:27 -08:00
|
|
|
</style>
|
|
|
|
|
|
2015-05-12 19:05:30 -07:00
|
|
|
<style name="Icon.AllApps">
|
2011-07-08 15:34:52 -07:00
|
|
|
<item name="android:background">@null</item>
|
2014-07-07 11:58:56 -07:00
|
|
|
<item name="android:textColor">@color/quantum_panel_text_color</item>
|
2013-10-25 15:24:24 -07:00
|
|
|
<item name="android:drawablePadding">@dimen/dynamic_grid_icon_drawable_padding</item>
|
2014-09-07 17:48:55 +02:00
|
|
|
<item name="android:shadowRadius">0</item>
|
2014-08-14 10:53:27 -07:00
|
|
|
<item name="customShadows">false</item>
|
2014-07-07 11:58:56 -07:00
|
|
|
</style>
|
|
|
|
|
|
2015-05-12 19:05:30 -07:00
|
|
|
<style name="Icon.Folder">
|
2014-07-07 11:58:56 -07:00
|
|
|
<item name="android:background">@null</item>
|
|
|
|
|
<item name="android:textColor">@color/quantum_panel_text_color</item>
|
2014-09-07 17:48:55 +02:00
|
|
|
<item name="android:shadowRadius">0</item>
|
2014-07-07 11:58:56 -07:00
|
|
|
<item name="customShadows">false</item>
|
2011-07-08 15:34:52 -07:00
|
|
|
</style>
|
2014-07-07 11:58:56 -07:00
|
|
|
|
2014-10-23 11:38:15 -07:00
|
|
|
<style name="SearchButton"></style>
|
|
|
|
|
|
2011-05-31 16:50:48 -07:00
|
|
|
<style name="DropTargetButtonContainer">
|
|
|
|
|
<item name="android:layout_width">0dp</item>
|
|
|
|
|
<item name="android:layout_height">match_parent</item>
|
|
|
|
|
</style>
|
2014-10-23 11:38:15 -07:00
|
|
|
|
2015-05-14 00:07:08 -07:00
|
|
|
<style name="DropTargetButtonBase">
|
2011-05-31 16:50:48 -07:00
|
|
|
<item name="android:layout_width">wrap_content</item>
|
2011-08-03 12:03:40 -07:00
|
|
|
<item name="android:layout_height">match_parent</item>
|
2011-06-12 15:15:29 -07:00
|
|
|
<item name="android:layout_gravity">center</item>
|
2011-05-31 16:50:48 -07:00
|
|
|
<item name="android:gravity">center_vertical</item>
|
|
|
|
|
<item name="android:drawablePadding">7.5dp</item>
|
2014-01-07 18:15:46 +00:00
|
|
|
<item name="android:paddingLeft">25dp</item>
|
|
|
|
|
<item name="android:paddingRight">25dp</item>
|
2011-06-12 15:15:29 -07:00
|
|
|
<item name="android:textColor">#FFFFFFFF</item>
|
2014-10-23 11:38:15 -07:00
|
|
|
<item name="android:textSize">@dimen/drop_target_text_size</item>
|
2011-09-27 17:45:27 -07:00
|
|
|
<item name="android:singleLine">true</item>
|
|
|
|
|
<item name="android:ellipsize">end</item>
|
2011-09-16 20:14:36 -07:00
|
|
|
<item name="android:shadowColor">#FF000000</item>
|
2011-07-08 15:34:52 -07:00
|
|
|
<item name="android:shadowDx">0.0</item>
|
2011-09-15 18:53:04 -07:00
|
|
|
<item name="android:shadowDy">1.0</item>
|
|
|
|
|
<item name="android:shadowRadius">4.0</item>
|
2011-05-31 16:50:48 -07:00
|
|
|
</style>
|
2011-05-25 17:41:01 -07:00
|
|
|
|
2015-05-14 00:07:08 -07:00
|
|
|
<style name="DropTargetButton" parent="DropTargetButtonBase" />
|
2014-10-23 11:38:15 -07:00
|
|
|
|
2014-08-04 10:53:22 -07:00
|
|
|
<style name="PreloadIcon">
|
|
|
|
|
<item name="background">@drawable/virtual_preload</item>
|
|
|
|
|
<item name="indicatorSize">4dp</item>
|
|
|
|
|
<item name="ringOutset">4dp</item>
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<style name="PreloadIcon.Folder">
|
|
|
|
|
<item name="background">@drawable/virtual_preload_folder</item>
|
|
|
|
|
<item name="indicatorSize">4dp</item>
|
|
|
|
|
<item name="ringOutset">4dp</item>
|
|
|
|
|
</style>
|
|
|
|
|
|
2014-10-24 16:45:59 -07:00
|
|
|
</resources>
|