mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 20:45:17 +00:00
7ce7ec56eb
2) modified 'App protection' preference group summary to be more verbose. 3) dropped the colons from 'Appearance' preference group summary. 4) dropped the colons from and 'SMS and MMS' preference group summary.
57 lines
2.4 KiB
Java
57 lines
2.4 KiB
Java
package org.thoughtcrime.securesms.preferences;
|
|
|
|
import android.content.Context;
|
|
import android.os.Bundle;
|
|
import android.preference.ListPreference;
|
|
|
|
import org.thoughtcrime.securesms.ApplicationPreferencesActivity;
|
|
import org.thoughtcrime.securesms.R;
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
|
|
|
import java.util.Arrays;
|
|
|
|
public class AppearancePreferenceFragment extends ListSummaryPreferenceFragment {
|
|
|
|
@Override
|
|
public void onCreate(Bundle paramBundle) {
|
|
super.onCreate(paramBundle);
|
|
addPreferencesFromResource(R.xml.preferences_appearance);
|
|
|
|
this.findPreference(TextSecurePreferences.THEME_PREF).setOnPreferenceChangeListener(new ListSummaryListener());
|
|
this.findPreference(TextSecurePreferences.LANGUAGE_PREF).setOnPreferenceChangeListener(new ListSummaryListener());
|
|
initializeListSummary((ListPreference)findPreference(TextSecurePreferences.THEME_PREF));
|
|
initializeListSummary((ListPreference)findPreference(TextSecurePreferences.LANGUAGE_PREF));
|
|
}
|
|
|
|
@Override
|
|
public void onStart() {
|
|
super.onStart();
|
|
getPreferenceScreen().getSharedPreferences().registerOnSharedPreferenceChangeListener((ApplicationPreferencesActivity)getActivity());
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
((ApplicationPreferencesActivity) getActivity()).getSupportActionBar().setTitle(R.string.preferences__appearance);
|
|
}
|
|
|
|
@Override
|
|
public void onStop() {
|
|
super.onStop();
|
|
getPreferenceScreen().getSharedPreferences().unregisterOnSharedPreferenceChangeListener((ApplicationPreferencesActivity) getActivity());
|
|
}
|
|
|
|
public static CharSequence getSummary(Context context) {
|
|
String[] languageEntries = context.getResources().getStringArray(R.array.language_entries);
|
|
String[] languageEntryValues = context.getResources().getStringArray(R.array.language_values);
|
|
String[] themeEntries = context.getResources().getStringArray(R.array.pref_theme_entries);
|
|
String[] themeEntryValues = context.getResources().getStringArray(R.array.pref_theme_values);
|
|
|
|
int langIndex = Arrays.asList(languageEntryValues).indexOf(TextSecurePreferences.getLanguage(context));
|
|
int themeIndex = Arrays.asList(themeEntryValues).indexOf(TextSecurePreferences.getTheme(context));
|
|
|
|
return context.getString(R.string.preferences__theme_summary, themeEntries[themeIndex]) + ", " +
|
|
context.getString(R.string.preferences__language_summary, languageEntries[langIndex]);
|
|
}
|
|
}
|