Home | History | Annotate | Download | only in camera

Lines Matching defs:editor

23 import android.content.SharedPreferences.Editor;
118 SharedPreferences.Editor editor = ComboPreferences
120 editor.putString(KEY_PICTURE_SIZE, candidate);
121 editor.apply();
358 SharedPreferences.Editor editor = pref.edit();
362 editor.remove("pref_video_quality_key");
364 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION);
365 editor.apply();
382 SharedPreferences.Editor editor = pref.edit();
398 editor.putString(KEY_JPEG_QUALITY, quality);
402 editor.putString(KEY_RECORD_LOCATION,
411 editor.remove("pref_camera_videoquality_key");
412 editor.remove("pref_camera_video_duration_key");
415 editor.putInt(KEY_VERSION, CURRENT_VERSION);
416 editor.apply();
439 Editor editor = pref.edit();
440 editor.putString(KEY_CAMERA_ID, Integer.toString(cameraId));
441 editor.apply();
509 Editor editor = preferences.edit();
510 editor.clear();
511 editor.apply();
516 Editor editor = preferences.edit();
517 editor.clear();
518 editor.apply();