2012-01-26 02:44:59 +04:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil; -*-
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2012-01-26 02:44:59 +04:00
|
|
|
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.preference.Preference;
|
|
|
|
import android.util.AttributeSet;
|
|
|
|
|
|
|
|
import org.mozilla.gecko.sync.setup.activities.SetupSyncActivity;
|
2012-07-07 03:46:24 +04:00
|
|
|
import org.mozilla.gecko.sync.setup.SyncAccounts;
|
2012-01-26 02:44:59 +04:00
|
|
|
|
2012-07-18 04:54:54 +04:00
|
|
|
class SyncPreference extends Preference {
|
2012-01-26 02:44:59 +04:00
|
|
|
private Context mContext;
|
|
|
|
|
|
|
|
public SyncPreference(Context context, AttributeSet attrs) {
|
|
|
|
super(context, attrs);
|
|
|
|
mContext = context;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onClick() {
|
2012-07-07 03:46:24 +04:00
|
|
|
// Show Sync setup if no accounts exist; otherwise, show account settings.
|
2012-07-07 05:35:29 +04:00
|
|
|
if (SyncAccounts.syncAccountsExist(mContext)) {
|
2012-07-07 03:46:24 +04:00
|
|
|
SyncAccounts.openSyncSettings(mContext);
|
|
|
|
} else {
|
|
|
|
Intent intent = new Intent(mContext, SetupSyncActivity.class);
|
|
|
|
mContext.startActivity(intent);
|
|
|
|
}
|
2012-01-26 02:44:59 +04:00
|
|
|
}
|
|
|
|
}
|