为什么我的偏好的defaultValue没有保存到SharedPreferences?

时间:2016-03-10 20:37:21

标签: android sharedpreferences android-preferences android-sharedpreferences

在下面的SSCCE中,主意是主活动中有一个按钮,当用户单击它时(调用方法showCheckBoxPreferencesValue()),首选项中定义的唯一首选项的默认值。 xml(使用android:default_value)应显示在此按钮下方的文本框中。

为了让这个默认值显示在文本框中,我使用方法sharedPreferences.getString()并传递Preference does not exist作为其第二个参数,这意味着如果首选项(使用key作为第一个参数传递)似乎不存在,然后将字符串Preference does not exist设置为文本框。 (Source

而且这种情况正在发生?我做错了什么?最后看截图。

RES / XML /的preferences.xml:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto" >

    <EditTextPreference android:key="@string/preferences_editTextPreference_key"
        android:title="@+id/preferences_editTextPreference_title"
        android:defaultValue="@string/preferences_editTextPreference_defaultValue" />

</PreferenceScreen>

MainActivity.java:

public class MainActivity extends Activity {
    private String EDIT_TEXT_PREFERENCE_KEY;
    private TextView textView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        textView = (TextView) findViewById(R.id.mainActivity_textView);

        PreferenceManager.setDefaultValues(this, R.xml.preferences, false);

    }

    public void showCheckBoxPreferencesValue(View view) {

        SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);

        EDIT_TEXT_PREFERENCE_KEY = getResources().getString(R.string.preferences_editTextPreference_key);

        String editTextPreferenceValue = sharedPreferences.getString(EDIT_TEXT_PREFERENCE_KEY,
                "Preference does not exist");

        textView.setText("Checkbox Preference Value: " + editTextPreferenceValue);
    }
}

RES /值/ strings.xml中

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">Preferences Practice</string>
    <string name="mainActivity_button">Show EditText Preference\'s Value</string>
    <string name="preferences_editTextPreference_key">EditTextPreferenceKey</string>
    <string name="preferences_editTextPreference_title">EditTextPreference Title</string>


    <string name="preferences_editTextPreference_defaultValue">EditTextPreference Default Value String</string>

</resources>

enter image description here

1 个答案:

答案 0 :(得分:2)

我尝试使用您提供的代码创建新应用。

我不得不重新创建你的布局文件,我做了:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="my.package.test.MainActivity">

    <TextView
        android:id="@+id/mainActivity_textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <Button
        android:layout_below="@id/mainActivity_textView"
        android:onClick="showCheckBoxPreferencesValue"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="CLICKME"
        />
</RelativeLayout>

(下次请加上=)! )

我运行了代码,它看起来像这样:

enter image description here

正如你所看到的,它有效。

我认为您的问题可能是您多次运行代码,而第一次没有正确拼写值键(或其他一些不幸)。 你看,你选择发送false作为setDefaultValues的最后一个参数,这会强制它只读取默认值(第一次启动应用程序时)。尝试卸载您的应用并重新安装,或将标志设置为true。

那是:

PreferenceManager.setDefaultValues(this, R.xml.preferences, true);