camera_preferences.xml revision 7af25641ec401d9f669497bd401020f2cb5933ef
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    <PreferenceCategory android:title="@string/pref_camera_settings_category">
19        <ListPreference
20                android:key="pref_camera_flashmode_key"
21                android:defaultValue="@string/pref_camera_flashmode_default"
22                android:title="@string/pref_camera_flashmode_title"
23                android:entries="@array/pref_camera_flashmode_entries"
24                android:entryValues="@array/pref_camera_flashmode_entryvalues"
25                android:dialogTitle="@string/pref_camera_flashmode_dialogtitle" />
26        <ListPreference
27                android:key="pref_camera_scenemode_key"
28                android:defaultValue="@string/pref_camera_scenemode_default"
29                android:title="@string/pref_camera_scenemode_title"
30                android:entries="@array/pref_camera_scenemode_entries"
31                android:entryValues="@array/pref_camera_scenemode_entryvalues"
32                android:dialogTitle="@string/pref_camera_scenemode_dialogtitle" />
33        <ListPreference
34                android:key="pref_camera_whitebalance_key"
35                android:defaultValue="@string/pref_camera_whitebalance_default"
36                android:title="@string/pref_camera_whitebalance_title"
37                android:entries="@array/pref_camera_whitebalance_entries"
38                android:entryValues="@array/pref_camera_whitebalance_entryvalues"
39                android:dialogTitle="@string/pref_camera_whitebalance_dialogtitle" />
40        <ListPreference
41                android:key="pref_camera_coloreffect_key"
42                android:defaultValue="@string/pref_camera_coloreffect_default"
43                android:title="@string/pref_camera_coloreffect_title"
44                android:entries="@array/pref_camera_coloreffect_entries"
45                android:entryValues="@array/pref_camera_coloreffect_entryvalues"
46                android:dialogTitle="@string/pref_camera_coloreffect_dialogtitle" />
47        <com.android.camera.BooleanListPreference
48                android:key="pref_camera_recordlocation_key"
49                android:defaultValue="@string/pref_camera_recordlocation_default"
50                android:title="@string/pref_camera_recordlocation_title"
51                android:entries="@array/pref_camera_recordlocation_entries"
52                android:entryValues="@array/pref_camera_recordlocation_entryvalues" />
53        <ListPreference
54                android:key="pref_camera_picturesize_key"
55                android:title="@string/pref_camera_picturesize_title"
56                android:entries="@array/pref_camera_picturesize_entries"
57                android:entryValues="@array/pref_camera_picturesize_entryvalues"
58                android:dialogTitle="@string/pref_camera_picturesize_dialogtitle" />
59        <ListPreference
60                android:key="pref_camera_jpegquality_key"
61                android:defaultValue="@string/pref_camera_jpegquality_default"
62                android:title="@string/pref_camera_jpegquality_title"
63                android:entries="@array/pref_camera_jpegquality_entries"
64                android:entryValues="@array/pref_camera_jpegquality_entryvalues"
65                android:dialogTitle="@string/pref_camera_jpegquality_dialogtitle" />
66        <ListPreference
67                android:key="pref_camera_focusmode_key"
68                android:defaultValue="@string/pref_camera_focusmode_default"
69                android:title="@string/pref_camera_focusmode_title"
70                android:entries="@array/pref_camera_focusmode_entries"
71                android:entryValues="@array/pref_camera_focusmode_entryvalues"
72                android:dialogTitle="@string/pref_camera_focusmode_dialogtitle" />
73    </PreferenceCategory>
74</PreferenceScreen>
75