video_preferences.xml revision da3e9964a4a82a942d7f450e7c89904f5c5aa03f
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<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18        xmlns:camera="http://schemas.android.com/apk/res/com.android.camera">
19    <PreferenceCategory
20            android:title="@string/pref_camcorder_settings_category">
21        <ListPreference
22                android:key="pref_camera_videoquality_key"
23                android:defaultValue="@string/pref_camera_videoquality_default"
24                android:title="@string/pref_camera_videoquality_title"
25                android:entries="@array/pref_camera_videoquality_entries"
26                android:entryValues="@array/pref_camera_videoquality_entryvalues"
27                android:dialogTitle="@string/pref_camera_videoquality_dialogtitle" />
28        <ListPreference
29                android:key="pref_camera_video_duration_key"
30                android:defaultValue="@string/pref_camera_video_duration_default"
31                android:title="@string/pref_camera_video_duration_title"
32                android:entries="@array/pref_camera_video_duration_entries"
33                android:entryValues="@array/pref_camera_video_duration_entryvalues"
34                android:dialogTitle="@string/pref_camera_video_duration_dialogtitle" />
35        <com.android.camera.IconListPreference
36                android:key="pref_camera_video_flashmode_key"
37                android:defaultValue="@string/pref_camera_video_flashmode_default"
38                android:title="@string/pref_camera_flashmode_title"
39                camera:icons="@array/pref_camera_video_flashmode_icons"
40                android:entries="@array/pref_camera_video_flashmode_entries"
41                android:entryValues="@array/pref_camera_video_flashmode_entryvalues"
42                android:dialogTitle="@string/pref_camera_flashmode_dialogtitle" />
43        <com.android.camera.IconListPreference
44                android:key="pref_camera_whitebalance_key"
45                android:defaultValue="@string/pref_camera_whitebalance_default"
46                android:title="@string/pref_camera_whitebalance_title"
47                camera:icons="@array/pref_camera_whitebalance_icons"
48                android:entries="@array/pref_camera_whitebalance_entries"
49                android:entryValues="@array/pref_camera_whitebalance_entryvalues"
50                android:dialogTitle="@string/pref_camera_whitebalance_dialogtitle" />
51        <ListPreference
52                android:key="pref_camera_coloreffect_key"
53                android:defaultValue="@string/pref_camera_coloreffect_default"
54                android:title="@string/pref_camera_coloreffect_title"
55                android:entries="@array/pref_camera_coloreffect_entries"
56                android:entryValues="@array/pref_camera_coloreffect_entryvalues"
57                android:dialogTitle="@string/pref_camera_coloreffect_dialogtitle" />
58    </PreferenceCategory>
59</PreferenceScreen>
60