Моя проблема в том, что когда я запускаю приложение, и пользователь не открывал мой PreferenceActivity
, поэтому, когда я их извлекаю, не получают значений по умолчанию, определенных в файле preference.xml.
файл preference.xml:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:key="applicationPreference" android:title="@string/config"
>
<ListPreference
android:key="pref1"
android:defaultValue="default"
android:title="Title"
android:summary="Summary"
android:entries="@array/entry_names"
android:entryValues="@array/entry_values"
android:dialogTitle="@string/dialog_title"
/>
</PreferenceScreen>
Фрагмент моей основной деятельности (onCreate
метод):
SharedPreferences appPreferences = PreferenceManager.getDefaultSharedPreferences(this);
String pref1 = appPreferences.getString("pref1", null);
В результате я получаю значение null
.