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

  /packages/apps/Email/src/com/android/email/activity/setup/
GeneralPreferences.java 36 final Preference removalAction = findPreference(PreferenceKeys.REMOVAL_ACTION);
37 if (removalAction != null) {
38 ps.removePreference(removalAction);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/settings/
GeneralPrefsFragment.java 123 final String removalAction = newValue.toString();
124 mMailPrefs.setRemovalAction(removalAction);
125 updateListSwipeTitle(removalAction);
207 final String removalAction = mMailPrefs.getRemovalAction(supportsArchive());
208 updateListSwipeTitle(removalAction);
262 private void updateListSwipeTitle(final String removalAction) {
265 listSwipePreference.setTitle(MailPrefs.RemovalActions.DELETE.equals(removalAction) ?
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
MailPrefs.java 252 * @param removalAction The preferred {@link RemovalActions}.
254 public void setRemovalAction(final @RemovalActionTypes String removalAction) {
255 getEditor().putString(PreferenceKeys.REMOVAL_ACTION, removalAction).apply();

Completed in 90 milliseconds