• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2017 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.system;
18 
19 import android.app.settings.SettingsEnums;
20 import android.content.Context;
21 import android.provider.SearchIndexableResource;
22 
23 import com.android.settings.R;
24 import com.android.settings.applications.manageapplications.ResetAppPrefPreferenceController;
25 import com.android.settings.dashboard.DashboardFragment;
26 import com.android.settings.network.NetworkResetPreferenceController;
27 import com.android.settings.search.BaseSearchIndexProvider;
28 import com.android.settings.search.Indexable;
29 import com.android.settingslib.core.AbstractPreferenceController;
30 import com.android.settingslib.core.lifecycle.Lifecycle;
31 import com.android.settingslib.search.SearchIndexable;
32 
33 import java.util.ArrayList;
34 import java.util.List;
35 
36 @SearchIndexable
37 public class ResetDashboardFragment extends DashboardFragment {
38 
39     private static final String TAG = "ResetDashboardFragment";
40 
41     @Override
getMetricsCategory()42     public int getMetricsCategory() {
43         return SettingsEnums.RESET_DASHBOARD;
44     }
45 
46     @Override
getLogTag()47     protected String getLogTag() {
48         return TAG;
49     }
50 
51     @Override
getPreferenceScreenResId()52     protected int getPreferenceScreenResId() {
53         return R.xml.reset_dashboard_fragment;
54     }
55 
56     @Override
createPreferenceControllers(Context context)57     protected List<AbstractPreferenceController> createPreferenceControllers(Context context) {
58         return buildPreferenceControllers(context, getSettingsLifecycle());
59     }
60 
buildPreferenceControllers(Context context, Lifecycle lifecycle)61     private static List<AbstractPreferenceController> buildPreferenceControllers(Context context,
62             Lifecycle lifecycle) {
63         final List<AbstractPreferenceController> controllers = new ArrayList<>();
64         controllers.add(new NetworkResetPreferenceController(context));
65         controllers.add(new FactoryResetPreferenceController(context));
66         controllers.add(new ResetAppPrefPreferenceController(context, lifecycle));
67         return controllers;
68     }
69 
70     public static final Indexable.SearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
71             new BaseSearchIndexProvider() {
72                 @Override
73                 public List<SearchIndexableResource> getXmlResourcesToIndex(Context context,
74                         boolean enabled) {
75                     final ArrayList<SearchIndexableResource> result = new ArrayList<>();
76 
77                     final SearchIndexableResource sir = new SearchIndexableResource(context);
78                     sir.xmlResId = R.xml.reset_dashboard_fragment;
79                     result.add(sir);
80                     return result;
81                 }
82 
83                 @Override
84                 public List<AbstractPreferenceController> createPreferenceControllers(
85                         Context context) {
86                     return buildPreferenceControllers(context, null /* lifecycle */);
87                 }
88             };
89 }
90