1 /* 2 * Copyright (C) 2018 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.settings.privacy; 18 19 import android.app.settings.SettingsEnums; 20 import android.content.Context; 21 22 import com.android.settings.R; 23 import com.android.settings.dashboard.DashboardFragment; 24 import com.android.settings.notification.LockScreenNotificationPreferenceController; 25 import com.android.settings.search.BaseSearchIndexProvider; 26 import com.android.settingslib.core.AbstractPreferenceController; 27 import com.android.settingslib.core.lifecycle.Lifecycle; 28 import com.android.settingslib.search.SearchIndexable; 29 30 import java.util.ArrayList; 31 import java.util.List; 32 33 @SearchIndexable 34 public class PrivacyDashboardFragment extends DashboardFragment { 35 private static final String TAG = "PrivacyDashboardFrag"; 36 private static final String KEY_LOCK_SCREEN_NOTIFICATIONS = "privacy_lock_screen_notifications"; 37 private static final String KEY_WORK_PROFILE_CATEGORY = 38 "privacy_work_profile_notifications_category"; 39 private static final String KEY_NOTIFICATION_WORK_PROFILE_NOTIFICATIONS = 40 "privacy_lock_screen_work_profile_notifications"; 41 42 @Override getMetricsCategory()43 public int getMetricsCategory() { 44 return SettingsEnums.TOP_LEVEL_PRIVACY; 45 } 46 47 @Override getLogTag()48 protected String getLogTag() { 49 return TAG; 50 } 51 52 @Override getPreferenceScreenResId()53 protected int getPreferenceScreenResId() { 54 return R.xml.privacy_dashboard_settings; 55 } 56 57 @Override getHelpResource()58 public int getHelpResource() { 59 return R.string.help_url_privacy_dashboard; 60 } 61 62 @Override createPreferenceControllers(Context context)63 protected List<AbstractPreferenceController> createPreferenceControllers(Context context) { 64 return buildPreferenceControllers(context, getSettingsLifecycle()); 65 } 66 buildPreferenceControllers( Context context, Lifecycle lifecycle)67 private static List<AbstractPreferenceController> buildPreferenceControllers( 68 Context context, Lifecycle lifecycle) { 69 final List<AbstractPreferenceController> controllers = new ArrayList<>(); 70 final LockScreenNotificationPreferenceController notificationController = 71 new LockScreenNotificationPreferenceController(context, 72 KEY_LOCK_SCREEN_NOTIFICATIONS, 73 KEY_WORK_PROFILE_CATEGORY, 74 KEY_NOTIFICATION_WORK_PROFILE_NOTIFICATIONS); 75 if (lifecycle != null) { 76 lifecycle.addObserver(notificationController); 77 } 78 controllers.add(notificationController); 79 80 return controllers; 81 82 } 83 84 public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER = 85 new BaseSearchIndexProvider(R.xml.privacy_dashboard_settings) { 86 87 @Override 88 public List<AbstractPreferenceController> createPreferenceControllers( 89 Context context) { 90 return buildPreferenceControllers(context, null); 91 } 92 }; 93 } 94