OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FolderPreferences
(Results
1 - 5
of
5
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/mail/preferences/
FolderPreferences.java
41
public class
FolderPreferences
extends VersionedPrefs {
77
public
FolderPreferences
(final Context context, final String accountEmail, final Folder folder,
87
* {@link #
FolderPreferences
(Context, String, Folder, boolean)} should be used if at all
94
public
FolderPreferences
(final Context context, final String accountEmail, final String persistentId,
99
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
;
147
final
FolderPreferences
folderPreferences
=
148
new
FolderPreferences
(context, account.getEmailAddress(), folder,
154
folderPreferences
.setNotificationsEnabled(notify);
158
folderPreferences
.setNotificationRingtoneUri(ringtoneUri);
163
folderPreferences
.setNotificationVibrateEnabled(vibrate);
165
folderPreferences
.commit();
/packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java
61
import com.android.mail.preferences.
FolderPreferences
;
144
private
FolderPreferences
mInboxFolderPreferences;
385
} else if (
FolderPreferences
.PreferenceKeys.NOTIFICATION_VIBRATE.equals(key)) {
389
preferenceChanged(
FolderPreferences
.PreferenceKeys.NOTIFICATION_VIBRATE, newValue);
391
} else if (
FolderPreferences
.PreferenceKeys.NOTIFICATIONS_ENABLED.equals(key)) {
393
preferenceChanged(
FolderPreferences
.PreferenceKeys.NOTIFICATIONS_ENABLED, newValue);
586
new
FolderPreferences
(mContext, mUiAccount.getEmailAddress(), folder, true);
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java
53
import com.android.mail.preferences.
FolderPreferences
;
368
final
FolderPreferences
folderPreferences
= new
FolderPreferences
(
371
if (!
folderPreferences
.areNotificationsEnabled()) {
558
final
FolderPreferences
folderPreferences
=
559
new
FolderPreferences
(context, account.getEmailAddress(), folder, isInbox);
564
moveNotificationSetting(accountPreferences,
folderPreferences
);
567
if (!
folderPreferences
.areNotificationsEnabled())
[
all
...]
/packages/apps/Email/src/com/android/email/
NotificationController.java
49
import com.android.mail.preferences.
FolderPreferences
;
364
final
FolderPreferences
folderPreferences
= new
FolderPreferences
(
367
ringtoneUri =
folderPreferences
.getNotificationRingtoneUri();
368
vibrate =
folderPreferences
.isNotificationVibrateEnabled();
[
all
...]
Completed in 233 milliseconds