• 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 
22 import com.android.settings.R;
23 import com.android.settings.applications.manageapplications.ResetAppPrefPreferenceController;
24 import com.android.settings.dashboard.DashboardFragment;
25 import com.android.settings.network.EraseEuiccDataController;
26 import com.android.settings.network.NetworkResetPreferenceController;
27 import com.android.settings.search.BaseSearchIndexProvider;
28 import com.android.settingslib.core.AbstractPreferenceController;
29 import com.android.settingslib.core.lifecycle.Lifecycle;
30 import com.android.settingslib.search.SearchIndexable;
31 
32 import java.util.ArrayList;
33 import java.util.List;
34 
35 /** Settings fragment containing reset options. */
36 @SearchIndexable(forTarget = SearchIndexable.ALL & ~SearchIndexable.ARC)
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 
61     @Override
onAttach(Context context)62     public void onAttach(Context context) {
63         super.onAttach(context);
64         use(EraseEuiccDataController.class).setFragment(this);
65     }
66 
67     @Override
shouldSkipForInitialSUW()68     protected boolean shouldSkipForInitialSUW() {
69         return true;
70     }
71 
buildPreferenceControllers(Context context, Lifecycle lifecycle)72     private static List<AbstractPreferenceController> buildPreferenceControllers(Context context,
73             Lifecycle lifecycle) {
74         final List<AbstractPreferenceController> controllers = new ArrayList<>();
75         controllers.add(new NetworkResetPreferenceController(context));
76         controllers.add(new FactoryResetPreferenceController(context));
77         controllers.add(new ResetAppPrefPreferenceController(context, lifecycle));
78         return controllers;
79     }
80 
81     public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
82             new BaseSearchIndexProvider(R.xml.reset_dashboard_fragment) {
83 
84                 @Override
85                 public List<AbstractPreferenceController> createPreferenceControllers(
86                         Context context) {
87                     return buildPreferenceControllers(context, null /* lifecycle */);
88                 }
89             };
90 }
91