summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorNebojsa Cvetkovic <nebkat@gmail.com>2013-12-15 20:50:59 +0000
committerDanesh M <daneshm90@gmail.com>2014-01-24 16:25:19 -0800
commit04d59a5a3bda757080acf34a974474317e7a6ab3 (patch)
tree1fe989b84bb78abb4a2211a846326ff95e02ef56 /res
parent9d02fc3d0e2ee6e164227737045f1375902eb018 (diff)
downloadandroid_packages_apps_Trebuchet-04d59a5a3bda757080acf34a974474317e7a6ab3.tar.gz
android_packages_apps_Trebuchet-04d59a5a3bda757080acf34a974474317e7a6ab3.tar.bz2
android_packages_apps_Trebuchet-04d59a5a3bda757080acf34a974474317e7a6ab3.zip
DynamicGrid: Use large icons
Change-Id: I4cdd15c82bbedd7b54051c3a79d63b6c1238a71a
Diffstat (limited to 'res')
-rw-r--r--res/values-sw340dp/config.xml3
-rw-r--r--res/values/cm_strings.xml5
-rw-r--r--res/values/config.xml1
-rw-r--r--res/values/preferences_defaults.xml1
-rw-r--r--res/xml/preferences_general.xml25
-rw-r--r--res/xml/preferences_headers.xml1
6 files changed, 33 insertions, 3 deletions
diff --git a/res/values-sw340dp/config.xml b/res/values-sw340dp/config.xml
new file mode 100644
index 000000000..221a1039c
--- /dev/null
+++ b/res/values-sw340dp/config.xml
@@ -0,0 +1,3 @@
+<resources>
+ <bool name="config_largeIcons">true</bool>
+</resources>
diff --git a/res/values/cm_strings.xml b/res/values/cm_strings.xml
index 0fd8d9a34..eb0db0dbc 100644
--- a/res/values/cm_strings.xml
+++ b/res/values/cm_strings.xml
@@ -31,9 +31,8 @@
<!-- Dock -->
<string name="preferences_interface_dock_title">Dock</string>
- <!-- Icons -->
- <string name="preferences_interface_icons_title">Icons</string>
-
<!-- General -->
<string name="preferences_interface_general_title">General</string>
+ <string name="preferences_interface_general_large_icons_title">Larger icons</string>
+ <string name="preferences_interface_general_large_icons_summary">Use extra large application icons in homescreen and drawer</string>
</resources> \ No newline at end of file
diff --git a/res/values/config.xml b/res/values/config.xml
index 8014c79f6..3c1dc36f7 100644
--- a/res/values/config.xml
+++ b/res/values/config.xml
@@ -3,6 +3,7 @@
<bool name="is_tablet">false</bool>
<bool name="is_large_tablet">false</bool>
<bool name="allow_rotation">false</bool>
+ <bool name="config_largeIcons">false</bool>
<!-- Max number of page indicators to show -->
<integer name="config_maxNumberOfPageIndicatorsToShow">21</integer>
diff --git a/res/values/preferences_defaults.xml b/res/values/preferences_defaults.xml
index b84e8f612..0fb4ed863 100644
--- a/res/values/preferences_defaults.xml
+++ b/res/values/preferences_defaults.xml
@@ -2,4 +2,5 @@
<resources>
<bool name="preferences_interface_homescreen_search_default">true</bool>
<bool name="preferences_interface_homescreen_scrolling_show_outlines_default">@bool/config_workspaceDefaultShowOutlines</bool>
+ <bool name="preferences_interface_general_large_icons_default">@bool/config_largeIcons</bool>
</resources> \ No newline at end of file
diff --git a/res/xml/preferences_general.xml b/res/xml/preferences_general.xml
new file mode 100644
index 000000000..24010b361
--- /dev/null
+++ b/res/xml/preferences_general.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2009 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.
+-->
+
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:launcher="http://schemas.android.com/apk/res/com.cyanogenmod.trebuchet"
+ android:key="ui_general"
+ android:title="@string/preferences_interface_general_title">
+ <CheckBoxPreference android:key="ui_general_large_icons"
+ android:title="@string/preferences_interface_general_large_icons_title"
+ android:summary="@string/preferences_interface_general_large_icons_summary"
+ android:defaultValue="@bool/preferences_interface_general_large_icons_default" />
+</PreferenceScreen> \ No newline at end of file
diff --git a/res/xml/preferences_headers.xml b/res/xml/preferences_headers.xml
index b90ec1eb4..303532e8f 100644
--- a/res/xml/preferences_headers.xml
+++ b/res/xml/preferences_headers.xml
@@ -28,6 +28,7 @@
android:title="@string/preferences_interface_dock_title" />
<header android:id="@+id/preferences_general_section"
+ android:fragment="org.cyanogenmod.trebuchet.settings.SettingsActivity$GeneralFragment"
android:title="@string/preferences_interface_general_title" />
<header android:id="@+id/preferences_application_section"