@hungphan2001:Bring to Android 11 Signed-off-by: Hưng Phan <phandinhhungvp2001@gmail.com>
151 lines
5.9 KiB
Java
151 lines
5.9 KiB
Java
package com.cherish.settings.fragments;
|
|
|
|
import com.android.internal.logging.nano.MetricsProto;
|
|
|
|
import android.os.Bundle;
|
|
import android.content.Intent;
|
|
import android.content.pm.PackageManager;
|
|
import android.content.pm.ResolveInfo;
|
|
import android.os.UserHandle;
|
|
import android.content.ContentResolver;
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import androidx.preference.ListPreference;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceGroup;
|
|
import androidx.preference.PreferenceScreen;
|
|
import androidx.preference.PreferenceCategory;
|
|
import androidx.preference.Preference.OnPreferenceChangeListener;
|
|
import androidx.preference.PreferenceFragment;
|
|
import androidx.preference.SwitchPreference;
|
|
import android.provider.Settings;
|
|
import com.android.settings.R;
|
|
|
|
import java.util.Locale;
|
|
import android.text.TextUtils;
|
|
import android.view.View;
|
|
|
|
import com.android.settings.SettingsPreferenceFragment;
|
|
import com.cherish.settings.preferences.CustomSeekBarPreference;
|
|
import com.cherish.settings.preferences.SystemSettingSeekBarPreference;
|
|
import com.cherish.settings.preferences.SystemSettingListPreference;
|
|
import com.cherish.settings.preferences.SystemSettingSwitchPreference;
|
|
import com.cherish.settings.preferences.SystemSettingMasterSwitchPreference;
|
|
import com.android.settings.Utils;
|
|
import com.android.internal.util.cherish.CherishUtils;
|
|
import android.util.Log;
|
|
import com.android.settings.search.BaseSearchIndexProvider;
|
|
import com.android.settingslib.search.SearchIndexable;
|
|
import android.provider.SearchIndexableResource;
|
|
|
|
import java.util.List;
|
|
import java.util.ArrayList;
|
|
import java.util.Map;
|
|
import java.util.HashMap;
|
|
import java.util.Collections;
|
|
|
|
@SearchIndexable(forTarget = SearchIndexable.ALL & ~SearchIndexable.ARC)
|
|
public class StatusBarSettings extends SettingsPreferenceFragment implements
|
|
OnPreferenceChangeListener {
|
|
|
|
private static final String STATUS_BAR_LOGO = "status_bar_logo";
|
|
|
|
private SystemSettingMasterSwitchPreference mStatusBarLogo;
|
|
|
|
private static final String PREF_KEY_CUTOUT = "cutout_settings";
|
|
private static final String PREF_STATUS_BAR_WEATHER = "status_bar_weather";
|
|
|
|
private ListPreference mStatusBarWeather;
|
|
|
|
@Override
|
|
public void onCreate(Bundle icicle) {
|
|
super.onCreate(icicle);
|
|
|
|
addPreferencesFromResource(R.xml.cherish_settings_statusbar);
|
|
|
|
ContentResolver resolver = getActivity().getContentResolver();
|
|
|
|
PreferenceScreen prefSet = getPreferenceScreen();
|
|
|
|
mStatusBarLogo = (SystemSettingMasterSwitchPreference) findPreference(STATUS_BAR_LOGO);
|
|
mStatusBarLogo.setChecked((Settings.System.getInt(getActivity().getContentResolver(),
|
|
Settings.System.STATUS_BAR_LOGO, 0) == 1));
|
|
mStatusBarLogo.setOnPreferenceChangeListener(this);
|
|
|
|
// Status bar weather
|
|
mStatusBarWeather = (ListPreference) findPreference(PREF_STATUS_BAR_WEATHER);
|
|
int temperatureShow = Settings.System.getIntForUser(resolver,
|
|
Settings.System.STATUS_BAR_SHOW_WEATHER_TEMP, 0,
|
|
UserHandle.USER_CURRENT);
|
|
mStatusBarWeather.setValue(String.valueOf(temperatureShow));
|
|
if (temperatureShow == 0) {
|
|
mStatusBarWeather.setSummary(R.string.statusbar_weather_summary);
|
|
} else {
|
|
mStatusBarWeather.setSummary(mStatusBarWeather.getEntry());
|
|
}
|
|
mStatusBarWeather.setOnPreferenceChangeListener(this);
|
|
|
|
Preference mCutoutPref = (Preference) findPreference(PREF_KEY_CUTOUT);
|
|
|
|
String hasDisplayCutout = getResources().getString(com.android.internal.R.string.config_mainBuiltInDisplayCutout);
|
|
|
|
if (TextUtils.isEmpty(hasDisplayCutout)) {
|
|
getPreferenceScreen().removePreference(mCutoutPref);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean onPreferenceChange(Preference preference, Object objValue) {
|
|
if (preference == mStatusBarLogo) {
|
|
boolean value = (Boolean) objValue;
|
|
Settings.System.putInt(getActivity().getContentResolver(),
|
|
Settings.System.STATUS_BAR_LOGO, value ? 1 : 0);
|
|
return true;
|
|
} else if (preference == mStatusBarWeather) {
|
|
int temperatureShow = Integer.valueOf((String) objValue);
|
|
int index = mStatusBarWeather.findIndexOfValue((String) objValue);
|
|
Settings.System.putIntForUser(getActivity().getContentResolver(),
|
|
Settings.System.STATUS_BAR_SHOW_WEATHER_TEMP,
|
|
temperatureShow, UserHandle.USER_CURRENT);
|
|
if (temperatureShow == 0) {
|
|
mStatusBarWeather.setSummary(R.string.statusbar_weather_summary);
|
|
} else {
|
|
mStatusBarWeather.setSummary(
|
|
mStatusBarWeather.getEntries()[index]);
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public int getMetricsCategory() {
|
|
return MetricsProto.MetricsEvent.CHERISH_SETTINGS;
|
|
}
|
|
|
|
/**
|
|
* For Search.
|
|
*/
|
|
|
|
public static final SearchIndexProvider SEARCH_INDEX_DATA_PROVIDER =
|
|
new BaseSearchIndexProvider() {
|
|
|
|
@Override
|
|
public List<SearchIndexableResource> getXmlResourcesToIndex(Context context,
|
|
boolean enabled) {
|
|
ArrayList<SearchIndexableResource> result =
|
|
new ArrayList<SearchIndexableResource>();
|
|
SearchIndexableResource sir = new SearchIndexableResource(context);
|
|
sir.xmlResId = R.xml.cherish_settings_statusbar;
|
|
result.add(sir);
|
|
return result;
|
|
}
|
|
|
|
@Override
|
|
public List<String> getNonIndexableKeys(Context context) {
|
|
List<String> keys = super.getNonIndexableKeys(context);
|
|
return keys;
|
|
}
|
|
};
|
|
|
|
} |