video_preferences.xml revision cc12a303ad51063cee73715849a951fb5f383188
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_whitebalance_key"
37                android:defaultValue="@string/pref_camera_whitebalance_default"
38                android:title="@string/pref_camera_whitebalance_title"
39                camera:icons="@array/pref_camera_whitebalance_icons"
40                android:entries="@array/pref_camera_whitebalance_entries"
41                android:entryValues="@array/pref_camera_whitebalance_entryvalues"
42                android:dialogTitle="@string/pref_camera_whitebalance_dialogtitle" />
43        <ListPreference
44                android:key="pref_camera_coloreffect_key"
45                android:defaultValue="@string/pref_camera_coloreffect_default"
46                android:title="@string/pref_camera_coloreffect_title"
47                android:entries="@array/pref_camera_coloreffect_entries"
48                android:entryValues="@array/pref_camera_coloreffect_entryvalues"
49                android:dialogTitle="@string/pref_camera_coloreffect_dialogtitle" />
50    </PreferenceCategory>
51</PreferenceScreen>
52