video_preferences.xml revision 469a9ef839e38630e1e652d182f7e0ee5882e277
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<PreferenceGroup
18        xmlns:camera="http://schemas.android.com/apk/res/com.android.camera" >
19    <PreferenceGroup
20            camera:title="@string/pref_camcorder_settings_category">
21        <IconListPreference
22                camera:key="pref_video_quality_key"
23                camera:defaultValue="@string/pref_video_quality_default"
24                camera:title="@string/pref_video_quality_title"
25                camera:largeIcons="@array/video_quality_icons"
26                camera:entries="@array/pref_video_quality_entries"
27                camera:entryValues="@array/pref_video_quality_entryvalues"/>
28        <IconListPreference
29                camera:key="pref_camera_video_flashmode_key"
30                camera:defaultValue="@string/pref_camera_video_flashmode_default"
31                camera:title="@string/pref_camera_flashmode_title"
32                camera:icons="@array/pref_camera_video_flashmode_icons"
33                camera:largeIcons="@array/video_flashmode_icons"
34                camera:entries="@array/pref_camera_video_flashmode_entries"
35                camera:entryValues="@array/pref_camera_video_flashmode_entryvalues"/>
36        <IconListPreference
37                camera:key="pref_camera_whitebalance_key"
38                camera:defaultValue="@string/pref_camera_whitebalance_default"
39                camera:title="@string/pref_camera_whitebalance_title"
40                camera:icons="@array/pref_camera_whitebalance_icons"
41                camera:largeIcons="@array/whitebalance_icons"
42                camera:entries="@array/pref_camera_whitebalance_entries"
43                camera:entryValues="@array/pref_camera_whitebalance_entryvalues"/>
44        <ListPreference
45                camera:key="pref_camera_coloreffect_key"
46                camera:defaultValue="@string/pref_camera_coloreffect_default"
47                camera:title="@string/pref_camera_coloreffect_title"
48                camera:entries="@array/pref_camera_coloreffect_entries"
49                camera:entryValues="@array/pref_camera_coloreffect_entryvalues"/>
50    </PreferenceGroup>
51</PreferenceGroup>
52