|
|
@ -47,57 +47,44 @@ import net.micode.notes.data.Notes;
|
|
|
|
import net.micode.notes.data.Notes.NoteColumns;
|
|
|
|
import net.micode.notes.data.Notes.NoteColumns;
|
|
|
|
import net.micode.notes.gtask.remote.GTaskSyncService;
|
|
|
|
import net.micode.notes.gtask.remote.GTaskSyncService;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* NotesPreferenceActivity 类用于管理便签应用的设置界面。
|
|
|
|
|
|
|
|
* 它允许用户选择同步账户、启动或取消同步,并显示上次同步时间。
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public class NotesPreferenceActivity extends PreferenceActivity {
|
|
|
|
public class NotesPreferenceActivity extends PreferenceActivity {
|
|
|
|
// 偏好设置的名称
|
|
|
|
|
|
|
|
public static final String PREFERENCE_NAME = "notes_preferences";
|
|
|
|
public static final String PREFERENCE_NAME = "notes_preferences";
|
|
|
|
// 同步账户名称的偏好设置键
|
|
|
|
|
|
|
|
public static final String PREFERENCE_SYNC_ACCOUNT_NAME = "pref_key_account_name";
|
|
|
|
public static final String PREFERENCE_SYNC_ACCOUNT_NAME = "pref_key_account_name";
|
|
|
|
// 上次同步时间的偏好设置键
|
|
|
|
|
|
|
|
public static final String PREFERENCE_LAST_SYNC_TIME = "pref_last_sync_time";
|
|
|
|
public static final String PREFERENCE_LAST_SYNC_TIME = "pref_last_sync_time";
|
|
|
|
// 设置背景颜色随机显示的偏好设置键
|
|
|
|
|
|
|
|
public static final String PREFERENCE_SET_BG_COLOR_KEY = "pref_key_bg_random_appear";
|
|
|
|
public static final String PREFERENCE_SET_BG_COLOR_KEY = "pref_key_bg_random_appear";
|
|
|
|
// 同步账户的偏好设置类别键
|
|
|
|
|
|
|
|
private static final String PREFERENCE_SYNC_ACCOUNT_KEY = "pref_sync_account_key";
|
|
|
|
private static final String PREFERENCE_SYNC_ACCOUNT_KEY = "pref_sync_account_key";
|
|
|
|
// 权限过滤器键
|
|
|
|
|
|
|
|
private static final String AUTHORITIES_FILTER_KEY = "authorities";
|
|
|
|
private static final String AUTHORITIES_FILTER_KEY = "authorities";
|
|
|
|
|
|
|
|
|
|
|
|
// 同步账户的偏好设置类别
|
|
|
|
|
|
|
|
private PreferenceCategory mAccountCategory;
|
|
|
|
private PreferenceCategory mAccountCategory;
|
|
|
|
// 用于接收 GTask 同步服务广播的接收器
|
|
|
|
|
|
|
|
private GTaskReceiver mReceiver;
|
|
|
|
private GTaskReceiver mReceiver;
|
|
|
|
// 原始的 Google 账户数组
|
|
|
|
|
|
|
|
private Account[] mOriAccounts;
|
|
|
|
private Account[] mOriAccounts;
|
|
|
|
// 标记是否添加了新账户
|
|
|
|
|
|
|
|
private boolean mHasAddedAccount;
|
|
|
|
private boolean mHasAddedAccount;
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle icicle) {
|
|
|
|
protected void onCreate(Bundle icicle) {
|
|
|
|
super.onCreate(icicle);
|
|
|
|
super.onCreate(icicle);
|
|
|
|
|
|
|
|
|
|
|
|
// 设置 ActionBar 可返回
|
|
|
|
/* using the app icon for navigation */
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
getActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
|
|
|
|
|
|
|
|
// 加载偏好设置资源
|
|
|
|
|
|
|
|
addPreferencesFromResource(R.xml.preferences);
|
|
|
|
addPreferencesFromResource(R.xml.preferences);
|
|
|
|
// 找到同步账户的偏好设置类别
|
|
|
|
|
|
|
|
mAccountCategory = (PreferenceCategory) findPreference(PREFERENCE_SYNC_ACCOUNT_KEY);
|
|
|
|
mAccountCategory = (PreferenceCategory) findPreference(PREFERENCE_SYNC_ACCOUNT_KEY);
|
|
|
|
// 创建 GTask 广播接收器
|
|
|
|
|
|
|
|
mReceiver = new GTaskReceiver();
|
|
|
|
mReceiver = new GTaskReceiver();
|
|
|
|
// 创建意图过滤器,用于接收 GTask 同步服务的广播
|
|
|
|
|
|
|
|
IntentFilter filter = new IntentFilter();
|
|
|
|
IntentFilter filter = new IntentFilter();
|
|
|
|
filter.addAction(GTaskSyncService.GTASK_SERVICE_BROADCAST_NAME);
|
|
|
|
filter.addAction(GTaskSyncService.GTASK_SERVICE_BROADCAST_NAME);
|
|
|
|
// 注册广播接收器
|
|
|
|
|
|
|
|
registerReceiver(mReceiver, filter);
|
|
|
|
registerReceiver(mReceiver, filter);
|
|
|
|
|
|
|
|
|
|
|
|
// 初始化原始账户数组
|
|
|
|
|
|
|
|
mOriAccounts = null;
|
|
|
|
mOriAccounts = null;
|
|
|
|
// 加载设置界面的头部视图
|
|
|
|
|
|
|
|
View header = LayoutInflater.from(this).inflate(R.layout.settings_header, null);
|
|
|
|
View header = LayoutInflater.from(this).inflate(R.layout.settings_header, null);
|
|
|
|
// 将头部视图添加到列表视图中
|
|
|
|
|
|
|
|
getListView().addHeaderView(header, null, true);
|
|
|
|
getListView().addHeaderView(header, null, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -105,7 +92,8 @@ public class NotesPreferenceActivity extends PreferenceActivity {
|
|
|
|
protected void onResume() {
|
|
|
|
protected void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
super.onResume();
|
|
|
|
|
|
|
|
|
|
|
|
// 如果添加了新账户,自动设置同步账户
|
|
|
|
// need to set sync account automatically if user has added a new
|
|
|
|
|
|
|
|
// account
|
|
|
|
if (mHasAddedAccount) {
|
|
|
|
if (mHasAddedAccount) {
|
|
|
|
Account[] accounts = getGoogleAccounts();
|
|
|
|
Account[] accounts = getGoogleAccounts();
|
|
|
|
if (mOriAccounts != null && accounts.length > mOriAccounts.length) {
|
|
|
|
if (mOriAccounts != null && accounts.length > mOriAccounts.length) {
|
|
|
@ -125,48 +113,36 @@ public class NotesPreferenceActivity extends PreferenceActivity {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 刷新界面
|
|
|
|
|
|
|
|
refreshUI();
|
|
|
|
refreshUI();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
protected void onDestroy() {
|
|
|
|
protected void onDestroy() {
|
|
|
|
// 注销广播接收器
|
|
|
|
|
|
|
|
if (mReceiver != null) {
|
|
|
|
if (mReceiver != null) {
|
|
|
|
unregisterReceiver(mReceiver);
|
|
|
|
unregisterReceiver(mReceiver);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
super.onDestroy();
|
|
|
|
super.onDestroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 加载同步账户的偏好设置项
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private void loadAccountPreference() {
|
|
|
|
private void loadAccountPreference() {
|
|
|
|
// 清空账户偏好设置类别中的所有项
|
|
|
|
|
|
|
|
mAccountCategory.removeAll();
|
|
|
|
mAccountCategory.removeAll();
|
|
|
|
|
|
|
|
|
|
|
|
// 创建一个新的偏好设置项
|
|
|
|
|
|
|
|
Preference accountPref = new Preference(this);
|
|
|
|
Preference accountPref = new Preference(this);
|
|
|
|
// 获取默认的同步账户名称
|
|
|
|
|
|
|
|
final String defaultAccount = getSyncAccountName(this);
|
|
|
|
final String defaultAccount = getSyncAccountName(this);
|
|
|
|
// 设置偏好设置项的标题
|
|
|
|
|
|
|
|
accountPref.setTitle(getString(R.string.preferences_account_title));
|
|
|
|
accountPref.setTitle(getString(R.string.preferences_account_title));
|
|
|
|
// 设置偏好设置项的摘要
|
|
|
|
|
|
|
|
accountPref.setSummary(getString(R.string.preferences_account_summary));
|
|
|
|
accountPref.setSummary(getString(R.string.preferences_account_summary));
|
|
|
|
// 设置偏好设置项的点击监听器
|
|
|
|
|
|
|
|
accountPref.setOnPreferenceClickListener(new OnPreferenceClickListener() {
|
|
|
|
accountPref.setOnPreferenceClickListener(new OnPreferenceClickListener() {
|
|
|
|
public boolean onPreferenceClick(Preference preference) {
|
|
|
|
public boolean onPreferenceClick(Preference preference) {
|
|
|
|
// 如果当前没有正在同步
|
|
|
|
|
|
|
|
if (!GTaskSyncService.isSyncing()) {
|
|
|
|
if (!GTaskSyncService.isSyncing()) {
|
|
|
|
// 如果默认账户为空,显示选择账户的对话框
|
|
|
|
|
|
|
|
if (TextUtils.isEmpty(defaultAccount)) {
|
|
|
|
if (TextUtils.isEmpty(defaultAccount)) {
|
|
|
|
|
|
|
|
// the first time to set account
|
|
|
|
showSelectAccountAlertDialog();
|
|
|
|
showSelectAccountAlertDialog();
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
// 如果已经设置了账户,显示更改账户的确认对话框
|
|
|
|
// if the account has already been set, we need to promp
|
|
|
|
|
|
|
|
// user about the risk
|
|
|
|
showChangeAccountConfirmAlertDialog();
|
|
|
|
showChangeAccountConfirmAlertDialog();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
// 如果正在同步,显示提示信息
|
|
|
|
|
|
|
|
Toast.makeText(NotesPreferenceActivity.this,
|
|
|
|
Toast.makeText(NotesPreferenceActivity.this,
|
|
|
|
R.string.preferences_toast_cannot_change_account, Toast.LENGTH_SHORT)
|
|
|
|
R.string.preferences_toast_cannot_change_account, Toast.LENGTH_SHORT)
|
|
|
|
.show();
|
|
|
|
.show();
|
|
|
@ -175,24 +151,18 @@ public class NotesPreferenceActivity extends PreferenceActivity {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 将账户偏好设置项添加到账户偏好设置类别中
|
|
|
|
|
|
|
|
mAccountCategory.addPreference(accountPref);
|
|
|
|
mAccountCategory.addPreference(accountPref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 加载同步按钮和上次同步时间的显示
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private void loadSyncButton() {
|
|
|
|
private void loadSyncButton() {
|
|
|
|
// 找到同步按钮和上次同步时间的文本视图
|
|
|
|
|
|
|
|
Button syncButton = (Button) findViewById(R.id.preference_sync_button);
|
|
|
|
Button syncButton = (Button) findViewById(R.id.preference_sync_button);
|
|
|
|
TextView lastSyncTimeView = (TextView) findViewById(R.id.prefenerece_sync_status_textview);
|
|
|
|
TextView lastSyncTimeView = (TextView) findViewById(R.id.prefenerece_sync_status_textview);
|
|
|
|
|
|
|
|
|
|
|
|
// 根据同步状态设置按钮的文本和点击监听器
|
|
|
|
// set button state
|
|
|
|
if (GTaskSyncService.isSyncing()) {
|
|
|
|
if (GTaskSyncService.isSyncing()) {
|
|
|
|
syncButton.setText(getString(R.string.preferences_button_sync_cancel));
|
|
|
|
syncButton.setText(getString(R.string.preferences_button_sync_cancel));
|
|
|
|
syncButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
syncButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
|
|
|
public void onClick(View v) {
|
|
|
|
// 取消同步
|
|
|
|
|
|
|
|
GTaskSyncService.cancelSync(NotesPreferenceActivity.this);
|
|
|
|
GTaskSyncService.cancelSync(NotesPreferenceActivity.this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
@ -200,15 +170,13 @@ public class NotesPreferenceActivity extends PreferenceActivity {
|
|
|
|
syncButton.setText(getString(R.string.preferences_button_sync_immediately));
|
|
|
|
syncButton.setText(getString(R.string.preferences_button_sync_immediately));
|
|
|
|
syncButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
syncButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
|
|
|
public void onClick(View v) {
|
|
|
|
// 立即开始同步
|
|
|
|
|
|
|
|
GTaskSyncService.startSync(NotesPreferenceActivity.this);
|
|
|
|
GTaskSyncService.startSync(NotesPreferenceActivity.this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 如果同步账户不为空,启用同步按钮
|
|
|
|
|
|
|
|
syncButton.setEnabled(!TextUtils.isEmpty(getSyncAccountName(this)));
|
|
|
|
syncButton.setEnabled(!TextUtils.isEmpty(getSyncAccountName(this)));
|
|
|
|
|
|
|
|
|
|
|
|
// 根据同步状态设置上次同步时间的显示
|
|
|
|
// set last sync time
|
|
|
|
if (GTaskSyncService.isSyncing()) {
|
|
|
|
if (GTaskSyncService.isSyncing()) {
|
|
|
|
lastSyncTimeView.setText(GTaskSyncService.getProgressString());
|
|
|
|
lastSyncTimeView.setText(GTaskSyncService.getProgressString());
|
|
|
|
lastSyncTimeView.setVisibility(View.VISIBLE);
|
|
|
|
lastSyncTimeView.setVisibility(View.VISIBLE);
|
|
|
@ -225,44 +193,30 @@ public class NotesPreferenceActivity extends PreferenceActivity {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 刷新界面,重新加载账户偏好设置和同步按钮
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private void refreshUI() {
|
|
|
|
private void refreshUI() {
|
|
|
|
loadAccountPreference();
|
|
|
|
loadAccountPreference();
|
|
|
|
loadSyncButton();
|
|
|
|
loadSyncButton();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 显示选择账户的对话框
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private void showSelectAccountAlertDialog() {
|
|
|
|
private void showSelectAccountAlertDialog() {
|
|
|
|
// 创建一个 AlertDialog 构建器
|
|
|
|
|
|
|
|
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
|
|
|
|
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
|
|
|
|
|
|
|
|
|
|
|
|
// 加载账户选择对话框的标题视图
|
|
|
|
|
|
|
|
View titleView = LayoutInflater.from(this).inflate(R.layout.account_dialog_title, null);
|
|
|
|
View titleView = LayoutInflater.from(this).inflate(R.layout.account_dialog_title, null);
|
|
|
|
TextView titleTextView = (TextView) titleView.findViewById(R.id.account_dialog_title);
|
|
|
|
TextView titleTextView = (TextView) titleView.findViewById(R.id.account_dialog_title);
|
|
|
|
titleTextView.setText(getString(R.string.preferences_dialog_select_account_title));
|
|
|
|
titleTextView.setText(getString(R.string.preferences_dialog_select_account_title));
|
|
|
|
TextView subtitleTextView = (TextView) titleView.findViewById(R.id.account_dialog_subtitle);
|
|
|
|
TextView subtitleTextView = (TextView) titleView.findViewById(R.id.account_dialog_subtitle);
|
|
|
|
subtitleTextView.setText(getString(R.string.preferences_dialog_select_account_tips));
|
|
|
|
subtitleTextView.setText(getString(R.string.preferences_dialog_select_account_tips));
|
|
|
|
|
|
|
|
|
|
|
|
// 设置对话框的自定义标题
|
|
|
|
|
|
|
|
dialogBuilder.setCustomTitle(titleView);
|
|
|
|
dialogBuilder.setCustomTitle(titleView);
|
|
|
|
dialogBuilder.setPositiveButton(null, null);
|
|
|
|
dialogBuilder.setPositiveButton(null, null);
|
|
|
|
|
|
|
|
|
|
|
|
// 获取所有的 Google 账户
|
|
|
|
|
|
|
|
Account[] accounts = getGoogleAccounts();
|
|
|
|
Account[] accounts = getGoogleAccounts();
|
|
|
|
// 获取默认的同步账户名称
|
|
|
|
|
|
|
|
String defAccount = getSyncAccountName(this);
|
|
|
|
String defAccount = getSyncAccountName(this);
|
|
|
|
|
|
|
|
|
|
|
|
// 记录原始账户数组
|
|
|
|
|
|
|
|
mOriAccounts = accounts;
|
|
|
|
mOriAccounts = accounts;
|
|
|
|
// 标记未添加新账户
|
|
|
|
|
|
|
|
mHasAddedAccount = false;
|
|
|
|
mHasAddedAccount = false;
|
|
|
|
|
|
|
|
|
|
|
|
if (accounts.length > 0) {
|
|
|
|
if (accounts.length > 0) {
|
|
|
|
// 创建一个字符序列数组,用于显示账户名称
|
|
|
|
|
|
|
|
CharSequence[] items = new CharSequence[accounts.length];
|
|
|
|
CharSequence[] items = new CharSequence[accounts.length];
|
|
|
|
final CharSequence[] itemMapping = items;
|
|
|
|
final CharSequence[] itemMapping = items;
|
|
|
|
int checkedItem = -1;
|
|
|
|
int checkedItem = -1;
|
|
|
@ -273,201 +227,134 @@ public class NotesPreferenceActivity extends PreferenceActivity {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
items[index++] = account.name;
|
|
|
|
items[index++] = account.name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 设置单选列表项
|
|
|
|
|
|
|
|
dialogBuilder.setSingleChoiceItems(items, checkedItem,
|
|
|
|
dialogBuilder.setSingleChoiceItems(items, checkedItem,
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
new DialogInterface.OnClickListener() {
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
// 设置选择的账户为同步账户
|
|
|
|
|
|
|
|
setSyncAccount(itemMapping[which].toString());
|
|
|
|
setSyncAccount(itemMapping[which].toString());
|
|
|
|
// 关闭对话框
|
|
|
|
|
|
|
|
dialog.dismiss();
|
|
|
|
dialog.dismiss();
|
|
|
|
// 刷新界面
|
|
|
|
|
|
|
|
refreshUI();
|
|
|
|
refreshUI();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 加载添加账户的视图
|
|
|
|
|
|
|
|
View addAccountView = LayoutInflater.from(this).inflate(R.layout.add_account_text, null);
|
|
|
|
View addAccountView = LayoutInflater.from(this).inflate(R.layout.add_account_text, null);
|
|
|
|
dialogBuilder.setView(addAccountView);
|
|
|
|
dialogBuilder.setView(addAccountView);
|
|
|
|
|
|
|
|
|
|
|
|
// 显示对话框
|
|
|
|
|
|
|
|
final AlertDialog dialog = dialogBuilder.show();
|
|
|
|
final AlertDialog dialog = dialogBuilder.show();
|
|
|
|
addAccountView.setOnClickListener(new View.OnClickListener() {
|
|
|
|
addAccountView.setOnClickListener(new View.OnClickListener() {
|
|
|
|
public void onClick(View v) {
|
|
|
|
public void onClick(View v) {
|
|
|
|
// 标记添加了新账户
|
|
|
|
|
|
|
|
mHasAddedAccount = true;
|
|
|
|
mHasAddedAccount = true;
|
|
|
|
// 创建一个添加账户的意图
|
|
|
|
|
|
|
|
Intent intent = new Intent("android.settings.ADD_ACCOUNT_SETTINGS");
|
|
|
|
Intent intent = new Intent("android.settings.ADD_ACCOUNT_SETTINGS");
|
|
|
|
intent.putExtra(AUTHORITIES_FILTER_KEY, new String[] {
|
|
|
|
intent.putExtra(AUTHORITIES_FILTER_KEY, new String[] {
|
|
|
|
"gmail-ls"
|
|
|
|
"gmail-ls"
|
|
|
|
});
|
|
|
|
});
|
|
|
|
// 启动添加账户的活动
|
|
|
|
|
|
|
|
startActivityForResult(intent, -1);
|
|
|
|
startActivityForResult(intent, -1);
|
|
|
|
// 关闭对话框
|
|
|
|
|
|
|
|
dialog.dismiss();
|
|
|
|
dialog.dismiss();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 显示更改账户的确认对话框
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private void showChangeAccountConfirmAlertDialog() {
|
|
|
|
private void showChangeAccountConfirmAlertDialog() {
|
|
|
|
// 创建一个 AlertDialog 构建器
|
|
|
|
|
|
|
|
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
|
|
|
|
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
|
|
|
|
|
|
|
|
|
|
|
|
// 加载账户更改对话框的标题视图
|
|
|
|
|
|
|
|
View titleView = LayoutInflater.from(this).inflate(R.layout.account_dialog_title, null);
|
|
|
|
View titleView = LayoutInflater.from(this).inflate(R.layout.account_dialog_title, null);
|
|
|
|
TextView titleTextView = (TextView) titleView.findViewById(R.id.account_dialog_title);
|
|
|
|
TextView titleTextView = (TextView) titleView.findViewById(R.id.account_dialog_title);
|
|
|
|
titleTextView.setText(getString(R.string.preferences_dialog_change_account_title,
|
|
|
|
titleTextView.setText(getString(R.string.preferences_dialog_change_account_title,
|
|
|
|
getSyncAccountName(this)));
|
|
|
|
getSyncAccountName(this)));
|
|
|
|
TextView subtitleTextView = (TextView) titleView.findViewById(R.id.account_dialog_subtitle);
|
|
|
|
TextView subtitleTextView = (TextView) titleView.findViewById(R.id.account_dialog_subtitle);
|
|
|
|
subtitleTextView.setText(getString(R.string.preferences_dialog_change_account_warn_msg));
|
|
|
|
subtitleTextView.setText(getString(R.string.preferences_dialog_change_account_warn_msg));
|
|
|
|
// 设置对话框的自定义标题
|
|
|
|
|
|
|
|
dialogBuilder.setCustomTitle(titleView);
|
|
|
|
dialogBuilder.setCustomTitle(titleView);
|
|
|
|
|
|
|
|
|
|
|
|
// 创建一个菜单项数组
|
|
|
|
|
|
|
|
CharSequence[] menuItemArray = new CharSequence[] {
|
|
|
|
CharSequence[] menuItemArray = new CharSequence[] {
|
|
|
|
getString(R.string.preferences_menu_change_account),
|
|
|
|
getString(R.string.preferences_menu_change_account),
|
|
|
|
getString(R.string.preferences_menu_remove_account),
|
|
|
|
getString(R.string.preferences_menu_remove_account),
|
|
|
|
getString(R.string.preferences_menu_cancel)
|
|
|
|
getString(R.string.preferences_menu_cancel)
|
|
|
|
};
|
|
|
|
};
|
|
|
|
// 设置菜单项的点击监听器
|
|
|
|
|
|
|
|
dialogBuilder.setItems(menuItemArray, new DialogInterface.OnClickListener() {
|
|
|
|
dialogBuilder.setItems(menuItemArray, new DialogInterface.OnClickListener() {
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
if (which == 0) {
|
|
|
|
if (which == 0) {
|
|
|
|
// 显示选择账户的对话框
|
|
|
|
|
|
|
|
showSelectAccountAlertDialog();
|
|
|
|
showSelectAccountAlertDialog();
|
|
|
|
} else if (which == 1) {
|
|
|
|
} else if (which == 1) {
|
|
|
|
// 移除同步账户
|
|
|
|
|
|
|
|
removeSyncAccount();
|
|
|
|
removeSyncAccount();
|
|
|
|
// 刷新界面
|
|
|
|
|
|
|
|
refreshUI();
|
|
|
|
refreshUI();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
// 显示对话框
|
|
|
|
|
|
|
|
dialogBuilder.show();
|
|
|
|
dialogBuilder.show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 获取所有的 Google 账户
|
|
|
|
|
|
|
|
* @return 包含所有 Google 账户的数组
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private Account[] getGoogleAccounts() {
|
|
|
|
private Account[] getGoogleAccounts() {
|
|
|
|
// 获取账户管理器
|
|
|
|
|
|
|
|
AccountManager accountManager = AccountManager.get(this);
|
|
|
|
AccountManager accountManager = AccountManager.get(this);
|
|
|
|
// 获取所有的 Google 账户
|
|
|
|
|
|
|
|
return accountManager.getAccountsByType("com.google");
|
|
|
|
return accountManager.getAccountsByType("com.google");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 设置同步账户
|
|
|
|
|
|
|
|
* @param account 要设置的账户名称
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private void setSyncAccount(String account) {
|
|
|
|
private void setSyncAccount(String account) {
|
|
|
|
// 如果当前同步账户与要设置的账户不同
|
|
|
|
|
|
|
|
if (!getSyncAccountName(this).equals(account)) {
|
|
|
|
if (!getSyncAccountName(this).equals(account)) {
|
|
|
|
// 获取共享偏好设置
|
|
|
|
|
|
|
|
SharedPreferences settings = getSharedPreferences(PREFERENCE_NAME, Context.MODE_PRIVATE);
|
|
|
|
SharedPreferences settings = getSharedPreferences(PREFERENCE_NAME, Context.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = settings.edit();
|
|
|
|
SharedPreferences.Editor editor = settings.edit();
|
|
|
|
if (account != null) {
|
|
|
|
if (account != null) {
|
|
|
|
// 保存同步账户名称
|
|
|
|
|
|
|
|
editor.putString(PREFERENCE_SYNC_ACCOUNT_NAME, account);
|
|
|
|
editor.putString(PREFERENCE_SYNC_ACCOUNT_NAME, account);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
editor.putString(PREFERENCE_SYNC_ACCOUNT_NAME, "");
|
|
|
|
editor.putString(PREFERENCE_SYNC_ACCOUNT_NAME, "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 提交更改
|
|
|
|
|
|
|
|
editor.commit();
|
|
|
|
editor.commit();
|
|
|
|
|
|
|
|
|
|
|
|
// 清空上次同步时间
|
|
|
|
// clean up last sync time
|
|
|
|
setLastSyncTime(this, 0);
|
|
|
|
setLastSyncTime(this, 0);
|
|
|
|
|
|
|
|
|
|
|
|
// 清空本地的 GTask 相关信息
|
|
|
|
// clean up local gtask related info
|
|
|
|
new Thread(new Runnable() {
|
|
|
|
new Thread(new Runnable() {
|
|
|
|
public void run() {
|
|
|
|
public void run() {
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
values.put(NoteColumns.GTASK_ID, "");
|
|
|
|
values.put(NoteColumns.GTASK_ID, "");
|
|
|
|
values.put(NoteColumns.SYNC_ID, 0);
|
|
|
|
values.put(NoteColumns.SYNC_ID, 0);
|
|
|
|
// 更新所有便签的 GTask 相关信息
|
|
|
|
|
|
|
|
getContentResolver().update(Notes.CONTENT_NOTE_URI, values, null, null);
|
|
|
|
getContentResolver().update(Notes.CONTENT_NOTE_URI, values, null, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).start();
|
|
|
|
}).start();
|
|
|
|
|
|
|
|
|
|
|
|
// 显示设置成功的提示信息
|
|
|
|
|
|
|
|
Toast.makeText(NotesPreferenceActivity.this,
|
|
|
|
Toast.makeText(NotesPreferenceActivity.this,
|
|
|
|
getString(R.string.preferences_toast_success_set_accout, account),
|
|
|
|
getString(R.string.preferences_toast_success_set_accout, account),
|
|
|
|
Toast.LENGTH_SHORT).show();
|
|
|
|
Toast.LENGTH_SHORT).show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 移除同步账户
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private void removeSyncAccount() {
|
|
|
|
private void removeSyncAccount() {
|
|
|
|
// 获取共享偏好设置
|
|
|
|
|
|
|
|
SharedPreferences settings = getSharedPreferences(PREFERENCE_NAME, Context.MODE_PRIVATE);
|
|
|
|
SharedPreferences settings = getSharedPreferences(PREFERENCE_NAME, Context.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = settings.edit();
|
|
|
|
SharedPreferences.Editor editor = settings.edit();
|
|
|
|
if (settings.contains(PREFERENCE_SYNC_ACCOUNT_NAME)) {
|
|
|
|
if (settings.contains(PREFERENCE_SYNC_ACCOUNT_NAME)) {
|
|
|
|
// 移除同步账户名称
|
|
|
|
|
|
|
|
editor.remove(PREFERENCE_SYNC_ACCOUNT_NAME);
|
|
|
|
editor.remove(PREFERENCE_SYNC_ACCOUNT_NAME);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (settings.contains(PREFERENCE_LAST_SYNC_TIME)) {
|
|
|
|
if (settings.contains(PREFERENCE_LAST_SYNC_TIME)) {
|
|
|
|
// 移除上次同步时间
|
|
|
|
|
|
|
|
editor.remove(PREFERENCE_LAST_SYNC_TIME);
|
|
|
|
editor.remove(PREFERENCE_LAST_SYNC_TIME);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 提交更改
|
|
|
|
|
|
|
|
editor.commit();
|
|
|
|
editor.commit();
|
|
|
|
|
|
|
|
|
|
|
|
// 清空本地的 GTask 相关信息
|
|
|
|
// clean up local gtask related info
|
|
|
|
new Thread(new Runnable() {
|
|
|
|
new Thread(new Runnable() {
|
|
|
|
public void run() {
|
|
|
|
public void run() {
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
values.put(NoteColumns.GTASK_ID, "");
|
|
|
|
values.put(NoteColumns.GTASK_ID, "");
|
|
|
|
values.put(NoteColumns.SYNC_ID, 0);
|
|
|
|
values.put(NoteColumns.SYNC_ID, 0);
|
|
|
|
// 更新所有便签的 GTask 相关信息
|
|
|
|
|
|
|
|
getContentResolver().update(Notes.CONTENT_NOTE_URI, values, null, null);
|
|
|
|
getContentResolver().update(Notes.CONTENT_NOTE_URI, values, null, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).start();
|
|
|
|
}).start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 获取当前的同步账户名称
|
|
|
|
|
|
|
|
* @param context 上下文对象
|
|
|
|
|
|
|
|
* @return 当前的同步账户名称,如果没有设置则返回空字符串
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public static String getSyncAccountName(Context context) {
|
|
|
|
public static String getSyncAccountName(Context context) {
|
|
|
|
// 获取共享偏好设置
|
|
|
|
|
|
|
|
SharedPreferences settings = context.getSharedPreferences(PREFERENCE_NAME,
|
|
|
|
SharedPreferences settings = context.getSharedPreferences(PREFERENCE_NAME,
|
|
|
|
Context.MODE_PRIVATE);
|
|
|
|
Context.MODE_PRIVATE);
|
|
|
|
// 获取同步账户名称
|
|
|
|
|
|
|
|
return settings.getString(PREFERENCE_SYNC_ACCOUNT_NAME, "");
|
|
|
|
return settings.getString(PREFERENCE_SYNC_ACCOUNT_NAME, "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 设置上次同步时间
|
|
|
|
|
|
|
|
* @param context 上下文对象
|
|
|
|
|
|
|
|
* @param time 上次同步的时间
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public static void setLastSyncTime(Context context, long time) {
|
|
|
|
public static void setLastSyncTime(Context context, long time) {
|
|
|
|
// 获取共享偏好设置
|
|
|
|
|
|
|
|
SharedPreferences settings = context.getSharedPreferences(PREFERENCE_NAME,
|
|
|
|
SharedPreferences settings = context.getSharedPreferences(PREFERENCE_NAME,
|
|
|
|
Context.MODE_PRIVATE);
|
|
|
|
Context.MODE_PRIVATE);
|
|
|
|
SharedPreferences.Editor editor = settings.edit();
|
|
|
|
SharedPreferences.Editor editor = settings.edit();
|
|
|
|
// 保存上次同步时间
|
|
|
|
|
|
|
|
editor.putLong(PREFERENCE_LAST_SYNC_TIME, time);
|
|
|
|
editor.putLong(PREFERENCE_LAST_SYNC_TIME, time);
|
|
|
|
// 提交更改
|
|
|
|
|
|
|
|
editor.commit();
|
|
|
|
editor.commit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 获取上次同步时间
|
|
|
|
|
|
|
|
* @param context 上下文对象
|
|
|
|
|
|
|
|
* @return 上次同步的时间,如果没有同步过则返回 0
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public static long getLastSyncTime(Context context) {
|
|
|
|
public static long getLastSyncTime(Context context) {
|
|
|
|
// 获取共享偏好设置
|
|
|
|
|
|
|
|
SharedPreferences settings = context.getSharedPreferences(PREFERENCE_NAME,
|
|
|
|
SharedPreferences settings = context.getSharedPreferences(PREFERENCE_NAME,
|
|
|
|
Context.MODE_PRIVATE);
|
|
|
|
Context.MODE_PRIVATE);
|
|
|
|
return settings.getLong(PREFERENCE_LAST_SYNC_TIME, 0);
|
|
|
|
return settings.getLong(PREFERENCE_LAST_SYNC_TIME, 0);
|
|
|
|