- Ой строке значение по умолчанию не отображаются
Я попытался установить значение по умолчанию для ListPreference, но ничего не отображается.
можете ли вы проверить мой код на наличие ошибок?
спасибо.
действительно, Эмад!--3-->
это в настройках.xml-файл:
<PreferenceCategory android:title="Media:">
<CheckBoxPreference android:key="ChimeWhenMusicIsPlaying"
android:title="@string/ChimeWhenMusicIsPlayingTitle" android:summary="@string/ChimeWhenMusicIsPlayingSummary"
android:defaultValue="false" />
<ListPreference android:title="Chime Volume"
android:key="ChimeVolume" android:summary="Select volume for the chiming sound."
android:entries="@array/chimeVolumeLabels" android:entryValues="@array/chimeVolumeValues"
android:defaultValue="1" />
</PreferenceCategory>
это находится в файле массивов:
<resources>
<string-array name="chimeVolumeLabels">
<item>Default</item>
<item>Soft</item>
<item>Medium</item>
<item>Loud</item>
</string-array>
<string-array name="chimeVolumeValues">
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
</string-array>
</resources>
2 ответов
Я обнаружил, что когда-то мне нужно очистить данные приложения. Удалите и переустановите приложение. После этого все работает как положено.
Я обнаружил, что мне нужно вызвать PreferenceManager.setDefaultValues () в моей активности предпочтений, чтобы мое значение по умолчанию отображалось изначально.
public class PreferencesActivity extends PreferenceActivity {
@Override
protected void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This static call will reset default values only on the first ever read
PreferenceManager.setDefaultValues(getBaseContext(), R.xml.settings, false);
addPreferencesFromResource(R.xml.settings);
}
}