HomeSort by relevance Sort by last modified time
    Searched refs:FolderPreferences (Results 1 - 5 of 5) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
FolderPreferences.java 40 public class FolderPreferences extends VersionedPrefs {
76 public FolderPreferences(final Context context, final String accountEmail, final Folder folder,
86 * {@link #FolderPreferences(Context, String, Folder, boolean)} should be used if at all
93 public FolderPreferences(final Context context, final String accountEmail, final String persistentId,
98 private FolderPreferences(final Context context, final String accountEmail, final Folder folder,
  /packages/apps/Email/src/com/android/email/preferences/
EmailPreferenceMigrator.java 27 import com.android.mail.preferences.FolderPreferences;
149 final FolderPreferences folderPreferences =
150 new FolderPreferences(context, account.getEmailAddress(), folder,
155 folderPreferences.setNotificationsEnabled(notify);
158 folderPreferences.setNotificationRingtoneUri(ringtoneUri);
162 folderPreferences.setNotificationVibrateEnabled(vibrate);
164 folderPreferences.commit();
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 61 import com.android.mail.preferences.FolderPreferences;
143 private FolderPreferences mInboxFolderPreferences;
390 } else if (FolderPreferences.PreferenceKeys.NOTIFICATIONS_ENABLED.equals(key)) {
393 } else if (FolderPreferences.PreferenceKeys.NOTIFICATION_VIBRATE.equals(key)) {
398 } else if (FolderPreferences.PreferenceKeys.NOTIFICATION_RINGTONE.equals(key)) {
570 mInboxFolderPreferences = new FolderPreferences(mContext,
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java 57 import com.android.mail.preferences.FolderPreferences;
442 final FolderPreferences folderPreferences = new FolderPreferences(
445 if (!folderPreferences.areNotificationsEnabled()) {
679 final FolderPreferences folderPreferences =
680 new FolderPreferences(context, account.getAccountId(), folder, isInbox);
685 moveNotificationSetting(accountPreferences, folderPreferences);
688 if (!folderPreferences.areNotificationsEnabled())
    [all...]
  /packages/apps/Email/src/com/android/email/
EmailNotificationController.java 49 import com.android.mail.preferences.FolderPreferences;
360 final FolderPreferences folderPreferences = new FolderPreferences(
363 ringtoneUri = folderPreferences.getNotificationRingtoneUri();
364 vibrate = folderPreferences.isNotificationVibrateEnabled();
    [all...]

Completed in 678 milliseconds