• 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.network.SubscriptionUtil;
28 import com.android.settings.search.BaseSearchIndexProvider;
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 /** Settings fragment containing reset options. */
37 @SearchIndexable(forTarget = SearchIndexable.ALL & ~SearchIndexable.ARC)
38 public class ResetDashboardFragment extends DashboardFragment {
39 
40     private static final String TAG = "ResetDashboardFragment";
41 
42     @Override
getMetricsCategory()43     public int getMetricsCategory() {
44         return SettingsEnums.RESET_DASHBOARD;
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.reset_dashboard_fragment;
55     }
56 
57     @Override
createPreferenceControllers(Context context)58     protected List<AbstractPreferenceController> createPreferenceControllers(Context context) {
59         return buildPreferenceControllers(context, getSettingsLifecycle());
60     }
61 
62     @Override
onAttach(Context context)63     public void onAttach(Context context) {
64         super.onAttach(context);
65         if (SubscriptionUtil.isSimHardwareVisible(context)) {
66             use(EraseEuiccDataController.class).setFragment(this);
67         }
68     }
69 
70     @Override
shouldSkipForInitialSUW()71     protected boolean shouldSkipForInitialSUW() {
72         return true;
73     }
74 
buildPreferenceControllers(Context context, Lifecycle lifecycle)75     private static List<AbstractPreferenceController> buildPreferenceControllers(Context context,
76             Lifecycle lifecycle) {
77         final List<AbstractPreferenceController> controllers = new ArrayList<>();
78         if (SubscriptionUtil.isSimHardwareVisible(context)) {
79             controllers.add(new NetworkResetPreferenceController(context));
80         }
81         controllers.add(new ResetAppPrefPreferenceController(context, lifecycle));
82         return controllers;
83     }
84 
85     public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
86             new BaseSearchIndexProvider(R.xml.reset_dashboard_fragment) {
87 
88                 @Override
89                 public List<AbstractPreferenceController> createPreferenceControllers(
90                         Context context) {
91                     return buildPreferenceControllers(context, null /* lifecycle */);
92                 }
93             };
94 }
95