aboutsummaryrefslogtreecommitdiffstats
path: root/res/values/styles.xml
diff options
context:
space:
mode:
authorJorge Ruesga <jorge@ruesga.com>2012-08-25 21:00:25 +0200
committerJorge Ruesga <jorge@ruesga.com>2012-08-25 21:00:25 +0200
commit3deb777d70fc5649d69f088e4dee75281d443395 (patch)
treeeabcb4af3c009a3b472eaa69cfcdc8d7f9572c41 /res/values/styles.xml
parent4ee6170036f75940e1712783bae92781216aad07 (diff)
downloadandroid_packages_apps_CMFileManager-3deb777d70fc5649d69f088e4dee75281d443395.tar.gz
android_packages_apps_CMFileManager-3deb777d70fc5649d69f088e4dee75281d443395.tar.bz2
android_packages_apps_CMFileManager-3deb777d70fc5649d69f088e4dee75281d443395.zip
Initial commit
Diffstat (limited to 'res/values/styles.xml')
-rw-r--r--res/values/styles.xml97
1 files changed, 97 insertions, 0 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml
new file mode 100644
index 00000000..fa1fd202
--- /dev/null
+++ b/res/values/styles.xml
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ** Copyright (C) 2012 The CyanogenMod 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 xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <style name="Explorer.Theme.Holo.Ligth" parent="@android:style/Theme.Holo.Light">
+ <item name="android:windowBackground">@color/default_background</item>
+ </style>
+
+ <style name="Explorer.Theme.Holo.Ligth.Overlay" parent="@android:style/Theme.Holo.Light">
+ <item name="android:windowIsTranslucent">true</item>
+ <item name="android:windowBackground">@color/black_transparent</item>
+ <item name="android:windowContentOverlay">@null</item>
+ <item name="android:windowNoTitle">true</item>
+ <item name="android:windowIsFloating">true</item>
+ <item name="android:backgroundDimEnabled">false</item>
+ </style>
+
+ <!-- Title -->
+ <style name="title_text_appearance">
+ <item name="android:textSize">@dimen/title_text_size</item>
+ <item name="android:textColor">@color/black_transparent</item>
+ <item name="android:textStyle">bold</item>
+ </style>
+
+ <!-- The text appearance for principal information (text that need to be highligthed) -->
+ <style name="primary_text_appearance">
+ <item name="android:textSize">@dimen/primary_text_size</item>
+ <item name="android:textColor">@color/black_transparent</item>
+ <item name="android:textStyle">bold</item>
+ </style>
+ <!-- The text appearance for principal information (important but not highlight) -->
+ <style name="primary_text_appearance_nohighlight" parent="@style/primary_text_appearance">
+ <item name="android:textStyle">normal</item>
+ </style>
+ <!-- The text appearance for secondary information (text with a lower importance) -->
+ <style name="secondary_text_appearance">
+ <item name="android:textSize">@dimen/secondary_text_size</item>
+ <item name="android:textColor">@color/black_transparent</item>
+ <item name="android:textStyle">normal</item>
+ </style>
+
+ <!-- Breadcrumb Element -->
+ <style name="breadcrumb_elemement">
+ <item name="android:gravity">center|center_vertical</item>
+ </style>
+
+ <!-- Breadcrumb Item -->
+ <style name="breadcrumb_item" parent="@style/breadcrumb_elemement">
+ <item name="android:textAppearance">@style/primary_text_appearance</item>
+ <item name="android:singleLine">true</item>
+ <item name="android:paddingLeft">@dimen/breadcrumb_item_margin_space</item>
+ <item name="android:paddingRight">@dimen/breadcrumb_item_margin_space</item>
+ <item name="android:minWidth">@dimen/breadcrumb_item_min_size</item>
+ </style>
+
+ <!-- Breadcrumb ActionBar Buttom -->
+ <style name="breadcrumb_actionbar_buttom">
+ <item name="android:paddingLeft">@dimen/extra_margin</item>
+ <item name="android:paddingRight">@dimen/default_margin</item>
+ </style>
+
+ <!-- Navigation Grid Layout -->
+ <style name="navigation_grid">
+ <item name="android:numColumns">@integer/default_grid_columns</item>
+ <item name="android:stretchMode">columnWidth</item>
+ <item name="android:horizontalSpacing">@dimen/default_horizontal_grid_spacing</item>
+ <item name="android:verticalSpacing">@dimen/default_vertical_grid_spacing</item>
+ </style>
+
+ <!-- Horizontal Divider -->
+ <style name="horizontal_divider">
+ <item name="android:layout_marginTop">@dimen/default_margin</item>
+ <item name="android:layout_marginBottom">@dimen/default_margin</item>
+ <item name="android:background">@android:color/darker_gray</item>
+ </style>
+
+ <!-- Vertical Divider -->
+ <style name="vertical_divider">
+ <item name="android:layout_marginLeft">@dimen/default_margin</item>
+ <item name="android:layout_marginRight">@dimen/default_margin</item>
+ <item name="android:background">@android:color/darker_gray</item>
+ </style>
+
+</resources> \ No newline at end of file