aboutsummaryrefslogtreecommitdiffstats
path: root/res/values/styles.xml
diff options
context:
space:
mode:
authorStephen Bird <sbird@cyngn.com>2015-06-12 12:36:16 -0700
committerSteve Kondik <steve@cyngn.com>2016-11-02 17:28:25 -0700
commit7cf7a731ef8a51d68e3cd0ac2d8c7ce569fe333f (patch)
tree76d196bc73908a21cd1edf4fde55f418db2619df /res/values/styles.xml
parent8f5038d00ee997d35e134752b271cca0d399c5bb (diff)
downloadandroid_packages_apps_CMFileManager-7cf7a731ef8a51d68e3cd0ac2d8c7ce569fe333f.tar.gz
android_packages_apps_CMFileManager-7cf7a731ef8a51d68e3cd0ac2d8c7ce569fe333f.tar.bz2
android_packages_apps_CMFileManager-7cf7a731ef8a51d68e3cd0ac2d8c7ce569fe333f.zip
Navigation & homepage
Move from single view to fragments. Add homepage. The base homepage is basically a list/scroll view with a search box at the top. Below will be search quick links and other fast link items. Change-Id: Ifd5fe9f1859837e1a76e250c42312c35e637657f
Diffstat (limited to 'res/values/styles.xml')
-rw-r--r--res/values/styles.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/res/values/styles.xml b/res/values/styles.xml
index cd6f8cc3..78d854a2 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -18,6 +18,27 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2" xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Base themes -->
+ <style name="Base.AppTheme" parent="Theme.AppCompat.Light">
+ <item name="android:colorPrimary">@color/material_palette_blue_primary</item>
+ <item name="android:colorPrimaryDark">@color/material_palette_blue_primary_dark</item>
+ <item name="android:colorAccent">@color/material_palette_blue_primary</item>
+ <item name="android:windowNoTitle">true</item>
+ <item name="android:windowActionBar">false</item>
+ <item name="windowActionBar">false</item>
+ <item name="windowNoTitle">true</item>
+ </style>
+
+ <style name="Widget.FileManager.ActionBar" parent="Widget.AppCompat.ActionBar">
+ <item name="android:background">@color/material_palette_blue_primary</item>
+ <item name="android:theme">@style/ThemeOverlay.FileManager.ActionBar</item>
+ </style>
+
+ <style name="ThemeOverlay.FileManager.ActionBar" parent="ThemeOverlay.AppCompat.ActionBar">
+ <item name="android:textColorPrimary">@color/console_fg</item>
+ </style>
+
+ <!-- Pre-Google Support Themes -->
+ <!-- Base themes -->
<style name="FileManager.Theme.Material.Light.NoActionBar" parent="@android:style/Theme.Material.Light.NoActionBar">
<item name="android:windowBackground">@color/default_background</item>
<item name="android:windowActionBar">false</item>