5

我有一个应用程序,我在其中存储这样的用户首选项:

public static final String KEY_PREFS_LOGIN_INFO = "login_info";
public static final String KEY_PREFS_FILE_VERSIONs = "file_versions";
public static final String KEY_PREFS_LOGS = "logs";
public static final String KEY_PREFS_OTHERS = "others";

使用这样的特定于 pref 的方法:

public static void setFileVersion(String key) {
    SharedPreferences settings = getAppContext().getSharedPreferences(KEY_PREFS_FILE_VERSIONS, 0);
    SharedPreferences.Editor editor = settings.edit();
    editor.putString("current", key);
    editor.commit();
}

然后像这样检索值:

public static String filesVersion() {
    SharedPreferences settings = getAppContext().getSharedPreferences(KEY_PREFS_FILE_VERSIONS, 0);
    String current = settings.getString("current", "");
    return current;
}

我想要做的是将我所有的偏好都存储在一个位置,这样我就可以使用通用方法来访问它们中的任何一个。在升级时,如何设置将值从旧存储位置迁移到新存储位置的方法?我正在寻找类似于 SQLiteOpenHelper 中的 onUpgrade() 方法的东西。

4

1 回答 1

6

我会覆盖应用程序。然后在启动时检查共享首选项中存储的版本号,然后根据需要执行从任何旧密钥到新密钥的遍历。

public class MyApplication extends Application {
    private static final int CURRENT_PREFS_VERSION = 2;

    @Override
    public void onCreate() {
        super.onCreate();

        if(filesVersion() != CURRENT_PREFS_VERSION){
            migrate(filesVersion())
        }
    }

    private migrate(int oldVersion){

        switch(oldVersion){
            case 1:
                //get old preference, store new preference
                break;
        }

        setFileVersion(CURRENT_PREFS_VERSION)
    }
于 2013-05-06T11:45:08.943 回答