|
@@ -31,6 +31,7 @@ import android.app.DialogFragment;
|
|
|
import android.app.FragmentManager;
|
|
|
import android.content.DialogInterface;
|
|
|
import android.content.Intent;
|
|
|
+import android.content.SharedPreferences;
|
|
|
import android.os.Bundle;
|
|
|
import android.support.annotation.ColorInt;
|
|
|
import android.support.annotation.NonNull;
|
|
@@ -50,6 +51,7 @@ import android.widget.TextView;
|
|
|
import com.owncloud.android.R;
|
|
|
import com.owncloud.android.authentication.AccountUtils;
|
|
|
import com.owncloud.android.authentication.AuthenticatorActivity;
|
|
|
+import com.owncloud.android.db.PreferenceManager;
|
|
|
import com.owncloud.android.lib.common.UserInfo;
|
|
|
import com.owncloud.android.lib.common.operations.RemoteOperation;
|
|
|
import com.owncloud.android.lib.common.operations.RemoteOperationResult;
|
|
@@ -337,11 +339,22 @@ public class UserInfoActivity extends FileActivity {
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
@Override
|
|
|
public void onClick(DialogInterface dialogInterface, int i) {
|
|
|
- Bundle bundle = new Bundle();
|
|
|
- bundle.putParcelable(KEY_ACCOUNT, Parcels.wrap(account));
|
|
|
- Intent intent = new Intent();
|
|
|
- intent.putExtras(bundle);
|
|
|
+ // remove contact backup job
|
|
|
+ ContactsPreferenceActivity.cancelContactBackupJobForAccount(getActivity(), account);
|
|
|
+
|
|
|
+ // disable daily backup
|
|
|
+ SharedPreferences sharedPreferences = PreferenceManager
|
|
|
+ .getDefaultSharedPreferences(getActivity());
|
|
|
+ SharedPreferences.Editor editor = sharedPreferences.edit();
|
|
|
+ editor.putBoolean(ContactsPreferenceActivity.PREFERENCE_CONTACTS_AUTOMATIC_BACKUP,
|
|
|
+ false);
|
|
|
+ editor.apply();
|
|
|
+
|
|
|
if (getActivity() != null && !removeDirectly) {
|
|
|
+ Bundle bundle = new Bundle();
|
|
|
+ bundle.putParcelable(KEY_ACCOUNT, Parcels.wrap(account));
|
|
|
+ Intent intent = new Intent();
|
|
|
+ intent.putExtras(bundle);
|
|
|
getActivity().setResult(KEY_DELETE_CODE, intent);
|
|
|
getActivity().finish();
|
|
|
} else {
|