Я хочу реализовать резервное копирование и восстановление, но он не выполняет метод onBackup()
.Мой код в файле манифеста:
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:backupAgent="MyBackupAgent" android:restoreAnyVersion="true"
android:allowBackup="true" android:enabled="true">
<meta-data android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAIMiLZ2_rMQFv6Huz3BYWpuxfVoK68Wk0CFMiXwA" />
<activity android:name=".Splash" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
В Activity
, когда я добавляю или обновляю любой элемент, который я хочу сделать резервную копию, поэтому мой код -
BackupManager bm = new BackupManager(this);
bm.dataChanged();
и в файле MyBackupAgent
Я написал
public class MyBackupAgent extends BackupAgent {
@Override
public void onBackup(ParcelFileDescriptor oldState, BackupDataOutput data,
ParcelFileDescriptor newState) throws IOException {
// TODO Auto-generated method stub
System.out.println("in MyBackupAgent");
}
@Override
public void onRestore(BackupDataInput data, int appVersionCode,
ParcelFileDescriptor newState) throws IOException {
// TODO Auto-generated method stub
}
}
Но здесь, в методе onBackup()
, он ничего не печатает, так как я могу определить, входит ли он в метод onbackup или нет?