blob: fa35daeb63bcd3c7c7eecaedef6eddf1e84bc5ec [file] [log] [blame]
/*
* Copyright (C) 2015 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.about;
import android.content.Context;
import android.os.Bundle;
import androidx.annotation.Keep;
import androidx.preference.PreferenceScreen;
import com.android.internal.logging.nano.MetricsProto;
import com.android.tv.settings.PreferenceUtils;
import com.android.tv.settings.R;
import com.android.tv.settings.SettingsPreferenceFragment;
@Keep
public class LegalFragment extends SettingsPreferenceFragment {
private static final String KEY_TERMS = "terms";
private static final String KEY_LICENSE = "license";
private static final String KEY_COPYRIGHT = "copyright";
private static final String KEY_WEBVIEW_LICENSE = "webview_license";
private static final String KEY_ADS = "ads";
@Override
public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
setPreferencesFromResource(R.xml.about_legal, null);
final PreferenceScreen screen = getPreferenceScreen();
final Context context = getActivity();
PreferenceUtils.resolveSystemActivityOrRemove(context, screen,
findPreference(KEY_TERMS), PreferenceUtils.FLAG_SET_TITLE);
PreferenceUtils.resolveSystemActivityOrRemove(context, screen,
findPreference(KEY_LICENSE), PreferenceUtils.FLAG_SET_TITLE);
PreferenceUtils.resolveSystemActivityOrRemove(context, screen,
findPreference(KEY_COPYRIGHT), PreferenceUtils.FLAG_SET_TITLE);
PreferenceUtils.resolveSystemActivityOrRemove(context, screen,
findPreference(KEY_WEBVIEW_LICENSE), PreferenceUtils.FLAG_SET_TITLE);
PreferenceUtils.resolveSystemActivityOrRemove(context, screen,
findPreference(KEY_ADS), PreferenceUtils.FLAG_SET_TITLE);
}
@Override
public int getMetricsCategory() {
return MetricsProto.MetricsEvent.ABOUT_LEGAL_SETTINGS;
}
}