summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/display
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2018-04-10 23:49:23 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2018-04-10 23:49:23 +0000
commitd628116e2f7da6617666b4d741fc129165029fcc (patch)
tree17ea2fda13b28774a1feafba7f7f91b48af86b0c /src/com/android/settings/display
parenta660cf1176ca954d933e5fde02d6075e2ee5c9cf (diff)
parent89f668ce29df7e0290b8a28543ca47d25cf99b22 (diff)
downloadpackages_apps_Settings-d628116e2f7da6617666b4d741fc129165029fcc.tar.gz
packages_apps_Settings-d628116e2f7da6617666b4d741fc129165029fcc.tar.bz2
packages_apps_Settings-d628116e2f7da6617666b4d741fc129165029fcc.zip
Merge "Convert auto-brightness switch to a full screen UI."
Diffstat (limited to 'src/com/android/settings/display')
-rw-r--r--src/com/android/settings/display/AutoBrightnessSettings.java74
1 files changed, 74 insertions, 0 deletions
diff --git a/src/com/android/settings/display/AutoBrightnessSettings.java b/src/com/android/settings/display/AutoBrightnessSettings.java
new file mode 100644
index 0000000000..39877ec5dd
--- /dev/null
+++ b/src/com/android/settings/display/AutoBrightnessSettings.java
@@ -0,0 +1,74 @@
+/*
+ * Copyright (C) 2018 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.
+ */
+
+package com.android.settings.display;
+
+import android.content.Context;
+import android.os.Bundle;
+import android.provider.SearchIndexableResource;
+
+import com.android.internal.logging.nano.MetricsProto;
+import com.android.settings.R;
+import com.android.settings.dashboard.DashboardFragment;
+import com.android.settings.search.BaseSearchIndexProvider;
+import com.android.settingslib.search.SearchIndexable;
+
+import java.util.Arrays;
+import java.util.List;
+
+@SearchIndexable(forTarget = SearchIndexable.ALL & ~SearchIndexable.ARC)
+public class AutoBrightnessSettings extends DashboardFragment {
+
+ private static final String TAG = "AutoBrightnessSettings";
+
+ @Override
+ public void onCreate(Bundle icicle) {
+ super.onCreate(icicle);
+ mFooterPreferenceMixin.createFooterPreference()
+ .setTitle(R.string.auto_brightness_description);
+ }
+
+ @Override
+ protected int getPreferenceScreenResId() {
+ return R.xml.auto_brightness_detail;
+ }
+
+ @Override
+ protected String getLogTag() {
+ return TAG;
+ }
+
+ @Override
+ public int getMetricsCategory() {
+ return MetricsProto.MetricsEvent.SETTINGS_AUTO_BRIGHTNESS;
+ }
+
+ @Override
+ public int getHelpResource() {
+ return R.string.help_url_auto_brightness;
+ }
+
+ public static final SearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
+ new BaseSearchIndexProvider() {
+ @Override
+ public List<SearchIndexableResource> getXmlResourcesToIndex(
+ Context context, boolean enabled) {
+ final SearchIndexableResource sir = new SearchIndexableResource(context);
+ sir.xmlResId = R.xml.auto_brightness_detail;
+ return Arrays.asList(sir);
+ }
+ };
+}