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