sharedPref.getString()从ListPreference的条目而不是entryValues中选择值

时间:2016-12-09 20:45:16

标签: java android sharedpreferences android-preferences listpreference

我的活动中有ListPreference

<ListPreference
        android:key="pref_rValue"
        android:entries="@array/r"
        android:summary="***"
        android:entryValues="@array/rValues"
        android:title="Choose"
        android:defaultValue="2"/>

android:entries="@array/r"android:entryValues="@array/rValues"strings.xml中单独定义,如下所示:

    <string-array name="r">
        <item>0.5 km</item>
        <item>1 km</item>
        <item>2 km</item>
        <item>5 km</item>
        <item>10 km</item>
    </string-array>

    <string-array name="rValues">
        <item>0.5</item>
        <item>1.0</item>
        <item>2.0</item>
        <item>5.0</item>
        <item>10.0</item>
    </string-array>

SettingActivity中定义的键:public static final String KEY_PREF_SYNC_CONN = "pref_rValue";

以下是我如何使用密钥,然后尝试在MainActivity中获取此ListPreference的值:

SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(this);
String rValue = sharedPref.getString(SettingsActivity.KEY_PREF_SYNC_CONN, "5");
Toast.makeText(getBaseContext(), "rValue: " + rValue, Toast.LENGTH_SHORT).show();

但是当我尝试将rValue字符串用作Double时,我收到此错误:java.lang.NumberFormatException: Invalid double: "2 km"并且上面的Toast也显示"rValue: 2 km"

我想知道为什么不是从android:entryValues="@array/rValues"获取价值,而是从android:entries="@array/r"获取价值?

请帮我解决这个问题。

1 个答案:

答案 0 :(得分:0)

这是一个非常简单而愚蠢的问题。

我刚刚卸载了应用程序,再次安装后,一切正常。

但是,我很想知道如何确保这样的事情在未来再也不会发生。