1

!!请帮助,我的用户因此丢失数据,我不知道该怎么办。

这只发生在冰淇淋三明治上,在果冻豆上很好用,Hoenycomb,是什么原因造成的?

由于我的一个字符串只是一个数字,将它保存为浮点数或整数会更好吗?

奇怪的是,它在我的 android 4.0.3 的 acer a500 平板电脑上运行良好,但它在 4.0.3 的模拟器上不起作用,我收到了一个用户在 4.0 上使用 Galaxy s3 的投诉。 4,对他来说也没有工作..

我将两个字符串保存到共享首选项,如下所示:

谢谢

    private static final String PREFS_NAME = "com.MY_PACKAGE.MY_APP.MY_WIDGET_PROVIDER_CLASS";
    private static final String PREF_PREFIX_KEY = "prefix_"; 
    private static final String PREF_SIZE_PREFIX_KEY = "prefix_";

...

  static void saveTitlePref(Context context, int mAppWidgetId, String text) {

        SharedPreferences.Editor editor = context.getSharedPreferences(PREFS_NAME, 0).edit();
        editor.putString(PREF_PREFIX_KEY + mAppWidgetId, text);
        editor.commit();
    }

   static void saveSizePref(Context context, int mAppWidgetId, String size) {

        SharedPreferences.Editor editor = context.getSharedPreferences(PREFS_NAME, 0).edit();
        editor.putString(PREF_SIZE_PREFIX_KEY, size);
        editor.commit();
    }


   static String loadTitlePref(Context context, int mAppWidgetId) {

        SharedPreferences prefs = context.getSharedPreferences(PREFS_NAME, MODE_PRIVATE);
        String prefix = prefs.getString(PREF_PREFIX_KEY + mAppWidgetId, null);
        // If there is no preference saved, get the default from a resource
        if (prefix != null) {
            return prefix;
        } else {
            return context.getString(R.string.appwidget_prefix_default);
        }
    }

    static String loadSizePref(Context context, int mAppWidgetId) {

        SharedPreferences prefs = context.getSharedPreferences(PREFS_NAME, MODE_PRIVATE);
        String sizeprefix = prefs.getString(PREF_SIZE_PREFIX_KEY, null);
        // If there is no preference saved, get the default from a resource
        if (sizeprefix != null) {
            return sizeprefix;
        } else {
            return "24";
        }
    }

字符串 xml

<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">

    <string name="appwidget_prefix_default"></string>
    <string name="appwidget_text_format"><xliff:g id="prefix">%1$s</xliff:g></string> 
    <string name="appwidget_size_format"><xliff:g id="sizeprefix">%s</xliff:g></string>


</resources>
4

2 回答 2

0

每个小部件的尺寸偏好不是唯一的,这是故意的吗?

你的所作所为

editor.putString(PREF_SIZE_PREFIX_KEY, size);

代替

editor.putString(PREF_SIZE_PREFIX_KEY + appWidgetId, size);

与检索相同:

 String sizeprefix = prefs.getString(PREF_SIZE_PREFIX_KEY, null);

因此,对 this 的每次新调用都会为其他小部件覆盖它。

于 2012-12-02T11:28:15.263 回答
0

首先,您不应该相信模拟器上发生的事情,因为它有时会奇怪地工作。

你的代码看起来不错。

我会说您应该在其他设备上检查相同的问题并检查是否正常,因为您的用户很可能遇到了其他问题,这最终推断出偏好无法正常工作

我自己经历过一些情况,用户说该应用程序不适用于他们,即使我已经在他们使用的同一设备上对其进行了测试。

于 2012-12-02T11:32:56.957 回答