diff options
author | Owen Lin <owenlin@google.com> | 2009-09-10 14:43:42 +0800 |
---|---|---|
committer | Owen Lin <owenlin@google.com> | 2009-09-11 22:59:27 +0800 |
commit | 50c60047bf55be485fbcfa69bd0ff84e542f212a (patch) | |
tree | c76eab42bb128926adf947c7bf6d7f21f7987fb0 /res/xml/video_preferences.xml | |
parent | 10fb5c8502759eb653b78e9a4c571b23a443ae0b (diff) | |
download | packages_apps_LegacyCamera-50c60047bf55be485fbcfa69bd0ff84e542f212a.zip packages_apps_LegacyCamera-50c60047bf55be485fbcfa69bd0ff84e542f212a.tar.gz packages_apps_LegacyCamera-50c60047bf55be485fbcfa69bd0ff84e542f212a.tar.bz2 |
Enable the on-screen settings in Camcorder and also use different settings
in Camera and Camcorder.
Change-Id: I2444a2c8f7a040b2b5fc449df0fc988fba1b7aaf
Diffstat (limited to 'res/xml/video_preferences.xml')
-rw-r--r-- | res/xml/video_preferences.xml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/res/xml/video_preferences.xml b/res/xml/video_preferences.xml new file mode 100644 index 0000000..3617f79 --- /dev/null +++ b/res/xml/video_preferences.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> + <PreferenceCategory + android:title="@string/pref_camcorder_settings_category"> + <ListPreference + android:key="pref_camera_videoquality_key" + android:defaultValue="@string/pref_camera_videoquality_default" + android:title="@string/pref_camera_videoquality_title" + android:entries="@array/pref_camera_videoquality_entries" + android:entryValues="@array/pref_camera_videoquality_entryvalues" + android:dialogTitle="@string/pref_camera_videoquality_dialogtitle" /> + <ListPreference + android:key="pref_camera_video_duration_key" + android:defaultValue="@string/pref_camera_video_duration_default" + android:title="@string/pref_camera_video_duration_title" + android:entries="@array/pref_camera_video_duration_entries" + android:entryValues="@array/pref_camera_video_duration_entryvalues" + android:dialogTitle="@string/pref_camera_video_duration_dialogtitle" /> + <ListPreference + android:key="pref_camera_whitebalance_key" + android:defaultValue="@string/pref_camera_whitebalance_default" + android:title="@string/pref_camera_whitebalance_title" + android:entries="@array/pref_camera_whitebalance_entries" + android:entryValues="@array/pref_camera_whitebalance_entryvalues" + android:dialogTitle="@string/pref_camera_whitebalance_dialogtitle" /> + <ListPreference + android:key="pref_camera_coloreffect_key" + android:defaultValue="@string/pref_camera_coloreffect_default" + android:title="@string/pref_camera_coloreffect_title" + android:entries="@array/pref_camera_coloreffect_entries" + android:entryValues="@array/pref_camera_coloreffect_entryvalues" + android:dialogTitle="@string/pref_camera_coloreffect_dialogtitle" /> + </PreferenceCategory> +</PreferenceScreen> |