Lines Matching refs:Editor
23 import android.content.SharedPreferences.Editor;
116 SharedPreferences.Editor editor = ComboPreferences
118 editor.putString(KEY_PICTURE_SIZE, candidate);
119 editor.apply();
352 SharedPreferences.Editor editor = pref.edit();
356 editor.remove("pref_video_quality_key");
358 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION);
359 editor.apply();
376 SharedPreferences.Editor editor = pref.edit();
392 editor.putString(KEY_JPEG_QUALITY, quality);
396 editor.putString(KEY_RECORD_LOCATION,
405 editor.remove("pref_camera_videoquality_key");
406 editor.remove("pref_camera_video_duration_key");
409 editor.putInt(KEY_VERSION, CURRENT_VERSION);
410 editor.apply();
433 Editor editor = pref.edit();
434 editor.putString(KEY_CAMERA_ID, Integer.toString(cameraId));
435 editor.apply();
503 Editor editor = preferences.edit();
504 editor.clear();
505 editor.apply();
510 Editor editor = preferences.edit();
511 editor.clear();
512 editor.apply();