blob: e6d076c2582b50d09df8e909ad1201f5ae993744 [file] [log] [blame]
/*
* Copyright (C) 2020 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.device.displaysound;
import static android.provider.Settings.Secure.MINIMAL_POST_PROCESSING_ALLOWED;
import static com.android.tv.settings.util.InstrumentationUtils.logToggleInteracted;
import android.app.tvsettings.TvSettingsEnums;
import android.os.Bundle;
import android.provider.Settings;
import android.text.TextUtils;
import androidx.annotation.Keep;
import androidx.preference.Preference;
import androidx.preference.SwitchPreference;
import com.android.tv.settings.R;
import com.android.tv.settings.SettingsPreferenceFragment;
/**
* The "Advanced display settings" screen in TV Settings.
*/
@Keep
public class AdvancedDisplayFragment extends SettingsPreferenceFragment {
private static final String KEY_GAME_MODE = "game_mode";
@Override
public void onCreatePreferences(Bundle bundle, String s) {
setPreferencesFromResource(R.xml.advanced_display, null);
SwitchPreference gameModePreference = findPreference(KEY_GAME_MODE);
gameModePreference.setChecked(getGameModeStatus() == 1);
}
@Override
public boolean onPreferenceTreeClick(Preference preference) {
if (TextUtils.equals(preference.getKey(), KEY_GAME_MODE)) {
logToggleInteracted(
TvSettingsEnums.DISPLAY_SOUND_ADVANCED_DISPLAY_GAME_MODE,
((SwitchPreference) preference).isChecked());
setGameModeStatus(((SwitchPreference) preference).isChecked() ? 1 : 0);
}
return super.onPreferenceTreeClick(preference);
}
private int getGameModeStatus() {
return Settings.Secure.getInt(getActivity().getContentResolver(),
MINIMAL_POST_PROCESSING_ALLOWED,
1);
}
private void setGameModeStatus(int state) {
Settings.Secure.putInt(getActivity().getContentResolver(), MINIMAL_POST_PROCESSING_ALLOWED,
state);
}
@Override
protected int getPageId() {
return TvSettingsEnums.DISPLAY_SOUND_ADVANCED_DISPLAY;
}
}