Home | History | Annotate | Download | only in camera

Lines Matching refs:editor

22 import android.content.SharedPreferences.Editor;
120 SharedPreferences.Editor editor = ComboPreferences
122 editor.putString(KEY_PICTURE_SIZE, candidate);
123 editor.apply();
356 SharedPreferences.Editor editor = pref.edit();
360 editor.remove("pref_video_quality_key");
362 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION);
363 editor.apply();
380 SharedPreferences.Editor editor = pref.edit();
396 editor.putString(KEY_JPEG_QUALITY, quality);
400 editor.putString(KEY_RECORD_LOCATION,
409 editor.remove("pref_camera_videoquality_key");
410 editor.remove("pref_camera_video_duration_key");
413 editor.putInt(KEY_VERSION, CURRENT_VERSION);
414 editor.apply();
437 Editor editor = pref.edit();
438 editor.putString(KEY_CAMERA_ID, Integer.toString(cameraId));
439 editor.apply();
462 Editor editor = preferences.edit();
463 editor.clear();
464 editor.apply();
469 Editor editor = preferences.edit();
470 editor.clear();
471 editor.apply();