/* * Copyright (C) 2021 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.tv.settings.enterprise; import android.content.Context; import android.icu.text.MessageFormat; import androidx.preference.Preference; import com.android.settingslib.core.AbstractPreferenceController; import com.android.tv.settings.R; import com.android.tv.settings.overlay.FlavorUtils; import java.util.HashMap; import java.util.Locale; import java.util.Map; public abstract class CaCertsPreferenceControllerBase extends AbstractPreferenceController { protected final EnterprisePrivacyFeatureProvider mFeatureProvider; public CaCertsPreferenceControllerBase(Context context) { super(context); mFeatureProvider = FlavorUtils.getFeatureFactory( context).getEnterprisePrivacyFeatureProvider(context); } @Override public void updateState(Preference preference) { final int certs = getNumberOfCaCerts(); MessageFormat msgFormat = new MessageFormat( mContext.getResources().getString( R.string.enterprise_privacy_number_ca_certs), Locale.getDefault()); Map arguments = new HashMap<>(); arguments.put("count", certs); preference.setSummary(msgFormat.format(arguments)); } @Override public boolean isAvailable() { return getNumberOfCaCerts() > 0; } protected abstract int getNumberOfCaCerts(); }