1 /* 2 * Copyright (C) 2023 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.security; 18 19 import android.app.settings.SettingsEnums; 20 import android.content.Context; 21 import android.os.Bundle; 22 23 import androidx.annotation.VisibleForTesting; 24 25 import com.android.settings.R; 26 import com.android.settings.dashboard.DashboardFragment; 27 import com.android.settings.search.BaseSearchIndexProvider; 28 import com.android.settingslib.search.SearchIndexable; 29 30 @SearchIndexable 31 public class ContentProtectionPreferenceFragment extends DashboardFragment { 32 private static final String TAG = "ContentProtectionPreferenceFragment"; 33 34 // Required by @SearchIndexable to make the fragment and preferences to be indexed. 35 // Do not rename. 36 @VisibleForTesting 37 public static final ContentProtectionSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER = 38 new ContentProtectionSearchIndexProvider( 39 R.layout.content_protection_preference_fragment); 40 41 @Override onAttach(Context context)42 public void onAttach(Context context) { 43 super.onAttach(context); 44 } 45 46 @Override onActivityCreated(Bundle savedInstanceState)47 public void onActivityCreated(Bundle savedInstanceState) { 48 super.onActivityCreated(savedInstanceState); 49 } 50 51 @Override getMetricsCategory()52 public int getMetricsCategory() { 53 return SettingsEnums.CONTENT_PROTECTION_PREFERENCE; 54 } 55 56 @Override getPreferenceScreenResId()57 protected int getPreferenceScreenResId() { 58 return R.layout.content_protection_preference_fragment; 59 } 60 61 @Override getLogTag()62 protected String getLogTag() { 63 return TAG; 64 } 65 66 public static class ContentProtectionSearchIndexProvider extends BaseSearchIndexProvider { 67 ContentProtectionSearchIndexProvider(int xmlRes)68 public ContentProtectionSearchIndexProvider(int xmlRes) { 69 super(xmlRes); 70 } 71 72 @Override 73 @VisibleForTesting isPageSearchEnabled(Context context)74 public boolean isPageSearchEnabled(Context context) { 75 return ContentProtectionPreferenceUtils.isAvailable(context); 76 } 77 } 78 } 79