/* * Copyright (C) 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.settings.security.screenlock; import android.app.settings.SettingsEnums; import android.content.Context; import android.os.UserHandle; import com.android.internal.widget.LockPatternUtils; import com.android.settings.R; import com.android.settings.dashboard.DashboardFragment; import com.android.settings.search.BaseSearchIndexProvider; import com.android.settings.security.OwnerInfoPreferenceController; import com.android.settingslib.core.AbstractPreferenceController; import com.android.settingslib.search.SearchIndexable; import java.util.ArrayList; import java.util.List; @SearchIndexable public class ScreenLockSettings extends DashboardFragment implements OwnerInfoPreferenceController.OwnerInfoCallback { private static final String TAG = "ScreenLockSettings"; private static final int MY_USER_ID = UserHandle.myUserId(); private LockPatternUtils mLockPatternUtils; @Override public int getMetricsCategory() { return SettingsEnums.SCREEN_LOCK_SETTINGS; } @Override protected int getPreferenceScreenResId() { return R.xml.screen_lock_settings; } @Override protected String getLogTag() { return TAG; } @Override protected List createPreferenceControllers(Context context) { mLockPatternUtils = new LockPatternUtils(context); return buildPreferenceControllers(context, this /* parent */, mLockPatternUtils); } @Override public void onOwnerInfoUpdated() { use(OwnerInfoPreferenceController.class).updateSummary(); } private static List buildPreferenceControllers(Context context, DashboardFragment parent, LockPatternUtils lockPatternUtils) { final List controllers = new ArrayList<>(); controllers.add(new PatternVisiblePreferenceController( context, MY_USER_ID, lockPatternUtils)); controllers.add(new PowerButtonInstantLockPreferenceController( context, MY_USER_ID, lockPatternUtils)); controllers.add(new LockAfterTimeoutPreferenceController( context, MY_USER_ID, lockPatternUtils)); controllers.add(new OwnerInfoPreferenceController(context, parent)); return controllers; } public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER = new BaseSearchIndexProvider(R.xml.screen_lock_settings) { @Override public List createPreferenceControllers( Context context) { return buildPreferenceControllers(context, null /* parent */, new LockPatternUtils(context)); } }; }