summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorSultanxda <sultanxda@gmail.com>2015-12-08 18:51:56 -0800
committerMichael Bestas <mikeioannina@gmail.com>2017-01-04 21:57:46 +0200
commit93acfc7471394422fc0c66b86786c3806ad57bda (patch)
tree6126a3d8ebb5a54344c1f53512c87dc6cb749273 /res
parentdd36cf3bb55a5695f3bc17a030cea8fbcbe85cf1 (diff)
downloadandroid_packages_apps_Snap-93acfc7471394422fc0c66b86786c3806ad57bda.tar.gz
android_packages_apps_Snap-93acfc7471394422fc0c66b86786c3806ad57bda.tar.bz2
android_packages_apps_Snap-93acfc7471394422fc0c66b86786c3806ad57bda.zip
Snap: Separate default focus time between camera/video
For the camera, the user expects a default tap-to-focus duration of 3 seconds with exposure locking. For the camcorder, however, the user expects a tap-to-focus duration of 0 seconds with no exposure locking, as the rapid change in exposure while recording would negatively impact the video. Separate the tap-to-focus option to reflect the recommended defaults. [mikeioannina]: Adapted to Snap Change-Id: I75bc0610f5d301c9728b4bc104b86e0fab5493fb Signed-off-by: Sultanxda <sultanxda@gmail.com>
Diffstat (limited to 'res')
-rw-r--r--res/values/cm_strings.xml1
-rw-r--r--res/xml/video_preferences.xml2
2 files changed, 2 insertions, 1 deletions
diff --git a/res/values/cm_strings.xml b/res/values/cm_strings.xml
index 17528f017..2dbc886c9 100644
--- a/res/values/cm_strings.xml
+++ b/res/values/cm_strings.xml
@@ -154,6 +154,7 @@
<!-- Touch focus duration -->
<string name="pref_camera_focustime_title">Touch focus duration</string>
<string name="pref_camera_focustime_default" translatable="false">3000</string>
+ <string name="pref_camera_video_focustime_default" translatable="false">200</string>
<string name="pref_camera_focustime_entry_0">0s</string>
<string name="pref_camera_focustime_entry_3">3s</string>
diff --git a/res/xml/video_preferences.xml b/res/xml/video_preferences.xml
index a943b3285..47a6effa8 100644
--- a/res/xml/video_preferences.xml
+++ b/res/xml/video_preferences.xml
@@ -203,7 +203,7 @@
camera:entryValues="@array/pref_video_focusmode_entryvalues" />
<IconListPreference
camera:key="pref_camera_video_focustime_key"
- camera:defaultValue="@string/pref_camera_focustime_default"
+ camera:defaultValue="@string/pref_camera_video_focustime_default"
camera:title="@string/pref_camera_focustime_title"
camera:singleIcon="@drawable/ic_settings_focus_time"
camera:entries="@array/pref_camera_focustime_duration_entries"