[1/2] OmniGears: add style settings page
Change-Id: If5d38743be0cb720b1748d26f0dcddb9c2acf23d
diff --git a/res/drawable/ic_settings_style.xml b/res/drawable/ic_settings_style.xml
new file mode 100644
index 0000000..75fb54d
--- /dev/null
+++ b/res/drawable/ic_settings_style.xml
@@ -0,0 +1,8 @@
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:height="24dp"
+ android:width="24dp"
+ android:viewportWidth="24"
+ android:viewportHeight="24"
+ android:tint="?android:attr/colorControlNormal">
+ <path android:fillColor="#fff" android:pathData="M17.5,12A1.5,1.5 0 0,1 16,10.5A1.5,1.5 0 0,1 17.5,9A1.5,1.5 0 0,1 19,10.5A1.5,1.5 0 0,1 17.5,12M14.5,8A1.5,1.5 0 0,1 13,6.5A1.5,1.5 0 0,1 14.5,5A1.5,1.5 0 0,1 16,6.5A1.5,1.5 0 0,1 14.5,8M9.5,8A1.5,1.5 0 0,1 8,6.5A1.5,1.5 0 0,1 9.5,5A1.5,1.5 0 0,1 11,6.5A1.5,1.5 0 0,1 9.5,8M6.5,12A1.5,1.5 0 0,1 5,10.5A1.5,1.5 0 0,1 6.5,9A1.5,1.5 0 0,1 8,10.5A1.5,1.5 0 0,1 6.5,12M12,3A9,9 0 0,0 3,12A9,9 0 0,0 12,21A1.5,1.5 0 0,0 13.5,19.5C13.5,19.11 13.35,18.76 13.11,18.5C12.88,18.23 12.73,17.88 12.73,17.5A1.5,1.5 0 0,1 14.23,16H16A5,5 0 0,0 21,11C21,6.58 16.97,3 12,3Z"/>
+</vector>
diff --git a/res/values/custom_strings.xml b/res/values/custom_strings.xml
index 3d593c0..89d8131 100644
--- a/res/values/custom_strings.xml
+++ b/res/values/custom_strings.xml
@@ -806,4 +806,6 @@
<string name="hide_summary_menu">Hide summary</string>
<string name="more_settings_title">More</string>
<string name="omni_device_parts">Device features</string>
+ <string name="style_settings_title">Style</string>
+ <string name="style_settings_summary">Wallpapers and other swag</string>
</resources>
diff --git a/res/xml/omni_dashboard_fragment.xml b/res/xml/omni_dashboard_fragment.xml
index 3fdea17..86bcfbe 100644
--- a/res/xml/omni_dashboard_fragment.xml
+++ b/res/xml/omni_dashboard_fragment.xml
@@ -19,6 +19,13 @@
android:title="@string/header_category_omni">
<Preference
+ android:key="style_settings"
+ android:title="@string/style_settings_title"
+ android:summary="@string/style_settings_summary"
+ android:icon="@drawable/ic_settings_style"
+ android:fragment="org.omnirom.omnigears.interfacesettings.StyleSettings" />
+
+ <Preference
android:key="device_parts"
android:title="@string/omni_device_parts"
android:icon="@drawable/ic_settings_omnigears"
diff --git a/res/xml/style_settings.xml b/res/xml/style_settings.xml
new file mode 100644
index 0000000..dba6069
--- /dev/null
+++ b/res/xml/style_settings.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2017-2018 The OmniROM Project
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+-->
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:settings="http://schemas.android.com/apk/res-auto"
+ android:key="style_settings"
+ android:title="@string/style_settings_title" >
+
+ <PreferenceCategory
+ android:key="category_theming"
+ android:title="@string/theming_title">
+
+ <Preference
+ android:key="custom_wall_browse"
+ android:title="@string/custom_wall_browse_title"
+ android:summary="@string/custom_wall_browse_summary"
+ android:persistent="false" >
+ <intent android:action="android.intent.action.MAIN"
+ android:targetPackage="org.omnirom.omnistyle"
+ android:targetClass="org.omnirom.omnistyle.BrowseWallsActivity" />
+ </Preference>
+
+ </PreferenceCategory>
+</PreferenceScreen>
diff --git a/src/org/omnirom/omnigears/interfacesettings/StyleSettings.java b/src/org/omnirom/omnigears/interfacesettings/StyleSettings.java
new file mode 100644
index 0000000..a793e21
--- /dev/null
+++ b/src/org/omnirom/omnigears/interfacesettings/StyleSettings.java
@@ -0,0 +1,112 @@
+/*
+ * Copyright (C) 2017-2018 The OmniROM Project
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+*/
+package org.omnirom.omnigears.interfacesettings;
+
+import android.app.Activity;
+import android.content.Context;
+import android.content.Intent;
+import android.content.pm.PackageManager;
+import android.content.pm.ResolveInfo;
+import android.net.Uri;
+import android.os.Bundle;
+import android.support.v7.preference.ListPreference;
+import android.support.v7.preference.Preference;
+import android.provider.SearchIndexableResource;
+import android.provider.Settings;
+
+import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
+
+import com.android.settings.R;
+import com.android.settings.SettingsPreferenceFragment;
+import com.android.settings.search.BaseSearchIndexProvider;
+import com.android.settings.search.Indexable;
+
+import org.omnirom.omnilib.preference.SystemSettingSwitchPreference;
+import org.omnirom.omnilib.preference.SeekBarPreference;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+public class StyleSettings extends SettingsPreferenceFragment implements
+ Preference.OnPreferenceChangeListener, Indexable {
+ private static final String TAG = "StyleSettings";
+ private static final String CUSTOM_WALL_BROWSE = "custom_wall_browse";
+
+ private Preference mWallBrowse;
+
+ @Override
+ public void onResume() {
+ super.onResume();
+ }
+
+ @Override
+ public int getMetricsCategory() {
+ return MetricsEvent.OMNI_SETTINGS;
+ }
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ addPreferencesFromResource(R.xml.style_settings);
+
+ mWallBrowse = findPreference(CUSTOM_WALL_BROWSE);
+ mWallBrowse.setEnabled(isBrowseWallsAvailable());
+ }
+
+ @Override
+ public boolean onPreferenceTreeClick(Preference preference) {
+ return super.onPreferenceTreeClick(preference);
+ }
+
+ @Override
+ public boolean onPreferenceChange(Preference preference, Object newValue) {
+ return true;
+ }
+
+ private boolean isBrowseWallsAvailable() {
+ PackageManager pm = getPackageManager();
+ Intent browse = new Intent();
+ browse.setClassName("org.omnirom.omnistyle", "org.omnirom.omnistyle.BrowseWallsActivity");
+ return pm.resolveActivity(browse, 0) != null;
+ }
+
+ public static final Indexable.SearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
+ new BaseSearchIndexProvider() {
+ @Override
+ public List<SearchIndexableResource> getXmlResourcesToIndex(Context context,
+ boolean enabled) {
+ ArrayList<SearchIndexableResource> result =
+ new ArrayList<SearchIndexableResource>();
+
+ SearchIndexableResource sir = new SearchIndexableResource(context);
+ sir.xmlResId = R.xml.style_settings;
+ result.add(sir);
+ return result;
+ }
+
+ @Override
+ public List<String> getNonIndexableKeys(Context context) {
+ ArrayList<String> result = new ArrayList<String>();
+ return result;
+ }
+ };
+
+}