备份 Android 中的 SharedPreferences?

问题描述 投票:0回答:1

我想备份 SharedPreferences 中的一个值,以便在重新安装后可以读出该值。

我的代码不起作用,我不知道错误是什么。

我的备份代理

package com.app.appname;
import android.app.backup.BackupAgentHelper;
import android.app.backup.BackupManager;
import android.app.backup.SharedPreferencesBackupHelper;
import android.content.Context;

public class MyBackupAgent extends BackupAgentHelper{
 static final String PREFS_DISPLAY = "AppName"; 
 private Context context;
 static final String MY_PREFS_BACKUP_KEY = "keyToStore"; 

    public MyBackupAgent(Context context){
        this.context = context;
        SharedPreferencesBackupHelper helper = 
              new SharedPreferencesBackupHelper(context, PREFS_DISPLAY);
        addHelper(MY_PREFS_BACKUP_KEY, helper);
    }
    
   public void storeData(){
        BackupManager backupManager = new BackupManager(context);
        backupManager.dataChanged();
    } 
}

我如何存储数据:

 ...
 SharedPreferences settings = getSharedPreferences("AppName", 0);
 SharedPreferences.Editor editor = settings.edit();
 editor.putBoolean("keyToStore", true);
 editor.commit();
 new MyBackupAgent(this).storeData();
 ...

我如何接收数据:

 ...
 SharedPreferences settings = getSharedPreferences("AppName", 0);
 boolean value = settings.getBoolean("keyToStore", false);
 ...

我还在Android Manifest中添加了API:

<application ...>
<meta-data android:name="com.google.android.backup.api_key" android:value="xxxxxxxxxxxxxxxxxxxxxxxxxx" />

你知道我做错了什么以及它是如何工作的吗?真的有用吗?

java android sharedpreferences backup store
1个回答
6
投票

SharedPreferences 的备份代理类应该是这样的:

public class MyPrefsBackupAgent extends BackupAgentHelper {
    // The name of the SharedPreferences file
    static final String PREFS = "user_preferences";

    // A key to uniquely identify the set of backup data
    static final String PREFS_BACKUP_KEY = "prefs";

    // Allocate a helper and add it to the backup agent
    @Override
    public void onCreate() {
        SharedPreferencesBackupHelper helper = new SharedPreferencesBackupHelper(this, PREFS);
        addHelper(PREFS_BACKUP_KEY, helper);
    }
}

然后,您必须使用以下内容请求云备份(它将异步完成):

import android.app.backup.BackupManager;
 ...

 public void requestBackup() {
   BackupManager bm = new BackupManager(this);
   bm.dataChanged();
 }

并且您不需要手动恢复 SharedPreferences,因为它们是由

SharedPreferencesBackupHelper
类自动管理的。

除了备份 API 密钥之外,不要忘记在清单中添加备份代理类:

<application android:label="MyApplication"
             android:backupAgent="MyBackupAgent">

有关这一切的更多信息,请访问 http://developer.android.com/guide/topics/data/backup.htmlhttp://developer.android.com/training/cloudsync/backupapi.html

© www.soinside.com 2019 - 2024. All rights reserved.