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 buildPreferenceControllers(Context context, Lifecycle lifecycle)67 private static List<AbstractPreferenceController> buildPreferenceControllers(Context context, 68 Lifecycle lifecycle) { 69 final List<AbstractPreferenceController> controllers = new ArrayList<>(); 70 controllers.add(new NetworkResetPreferenceController(context)); 71 controllers.add(new FactoryResetPreferenceController(context)); 72 controllers.add(new ResetAppPrefPreferenceController(context, lifecycle)); 73 return controllers; 74 } 75 76 public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER = 77 new BaseSearchIndexProvider(R.xml.reset_dashboard_fragment) { 78 79 @Override 80 public List<AbstractPreferenceController> createPreferenceControllers( 81 Context context) { 82 return buildPreferenceControllers(context, null /* lifecycle */); 83 } 84 }; 85 } 86