我正在尝试让 BackupAgent 正常工作,但无法正常工作。这是我的示例代码:
布局只是一个 TextView 和一个 Button。
主要活动:
...
public static final String PREF_NAME = "TestPref";
private static final String TEST_KEY = "TEST";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final SharedPreferences pref = getApplicationContext()
.getSharedPreferences(PREF_NAME, MODE_PRIVATE);
if (pref.getString(TEST_KEY, "").length() == 0) {
pref.edit().putString(TEST_KEY, "new Date())
.commit();
new BackupManager(getApplicationContext()).dataChanged();
}
Button button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
TextView tv = (TextView) findViewById(R.id.textView1);
if ("START_VALUE".equalsIgnoreCase(tv.getText().toString())) {
tv.setText(pref.getString(TEST_KEY, ""));
}
}
});
}
BackupHelper 只是我在这里可用的:http: //developer.android.com/reference/android/app/backup/SharedPreferencesBackupHelper.html 我用我使用的那个调整了 pref 文件的名称。
在我添加的清单中
android:backupAgent="TheBackupAgent"
(应用程序标签)和备份元数据
<meta-data android:name="com.google.android.backup.api_key"
android:value="{registered_key}" />
所以它真的是一个非常简单的应用程序。
我现在正在执行以下操作:
1)启动应用程序
2)Textview在xml文件中用“START_VALUE”初始化,所以我按下按钮并显示pref-value
3)我从控制台运行“adb shell bmgr run”以立即运行备份
4)我运行“adb卸载com.foo.backuptest”
5)我运行“adb install com.foo.backuptest”
现在值(时间戳)未从云中恢复。生成一个新的。
我的错误在哪里??