Home | History | Annotate | Download | only in cloudsync

Lines Matching full:helper

75 {@link android.app.backup.BackupAgentHelper}.  Creating this helper class is
87 android.app.backup.SharedPreferencesBackupHelper}. After you create the helper
108 // Allocate a helper and add it to the backup agent
111 FileBackupHelper helper = new FileBackupHelper(this, HIGH_SCORES_FILENAME);
112 addHelper(FILES_BACKUP_KEY, helper);
123 FileBackupHelper helper = new FileBackupHelper(this, HIGH_SCORES_FILENAME, PROGRESS_FILENAME);
124 addHelper(FILES_BACKUP_KEY, helper);
131 your application. Here's an example of how your backup agent helper might look if
148 // Simply allocate a helper and install it
150 SharedPreferencesBackupHelper helper =
152 addHelper(MY_PREFS_BACKUP_KEY, helper);
157 <p>You can add as many backup helper instances to your backup agent helper as you