Home | History | Annotate | Download | only in camera

Lines Matching refs:editor

22 import android.content.SharedPreferences.Editor;
105 SharedPreferences.Editor editor = ComboPreferences
107 editor.putString(KEY_PICTURE_SIZE, candidate);
108 editor.apply();
296 SharedPreferences.Editor editor = pref.edit();
300 editor.remove("pref_video_quality_key");
302 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION);
303 editor.apply();
315 SharedPreferences.Editor editor = pref.edit();
331 editor.putString(KEY_JPEG_QUALITY, quality);
335 editor.putString(KEY_RECORD_LOCATION,
344 editor.remove("pref_camera_videoquality_key");
345 editor.remove("pref_camera_video_duration_key");
348 editor.putInt(KEY_VERSION, CURRENT_VERSION);
349 editor.apply();
358 Editor editor = pref.edit();
359 editor.putString(KEY_CAMERA_ID, Integer.toString(cameraId));
360 editor.apply();
429 Editor editor = preferences.edit();
430 editor.clear();
431 editor.apply();
436 Editor editor = preferences.edit();
437 editor.clear();
438 editor.apply();