Home | History | Annotate | Download | only in xml
      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.gallery3d"
     19         camera:title="@string/pref_camcorder_settings_category">
     20     <ListPreference
     21             camera:key="pref_video_quality_key"
     22             camera:defaultValue="@string/pref_video_quality_default"
     23             camera:title="@string/pref_video_quality_title"
     24             camera:entries="@array/pref_video_quality_entries"
     25             camera:entryValues="@array/pref_video_quality_entryvalues"/>
     26     <IconListPreference
     27             camera:key="pref_video_time_lapse_frame_interval_key"
     28             camera:defaultValue="@string/pref_video_time_lapse_frame_interval_default"
     29             camera:title="@string/pref_video_time_lapse_frame_interval_title"
     30             camera:singleIcon="@drawable/ic_timelapse_none"
     31             camera:entries="@array/pref_video_time_lapse_frame_interval_entries"
     32             camera:entryValues="@array/pref_video_time_lapse_frame_interval_entryvalues"/>
     33     <IconListPreference
     34             camera:key="pref_camera_video_flashmode_key"
     35             camera:defaultValue="@string/pref_camera_video_flashmode_default"
     36             camera:title="@string/pref_camera_flashmode_title"
     37             camera:icons="@array/video_flashmode_icons"
     38             camera:largeIcons="@array/video_flashmode_largeicons"
     39             camera:entries="@array/pref_camera_video_flashmode_entries"
     40             camera:entryValues="@array/pref_camera_video_flashmode_entryvalues"/>
     41     <IconListPreference
     42             camera:key="pref_camera_whitebalance_key"
     43             camera:defaultValue="@string/pref_camera_whitebalance_default"
     44             camera:title="@string/pref_camera_whitebalance_title"
     45             camera:icons="@array/whitebalance_icons"
     46             camera:largeIcons="@array/whitebalance_largeicons"
     47             camera:entries="@array/pref_camera_whitebalance_entries"
     48             camera:entryValues="@array/pref_camera_whitebalance_entryvalues"/>
     49     <IconListPreference
     50             camera:key="pref_camera_id_key"
     51             camera:defaultValue="@string/pref_camera_id_default"
     52             camera:title="@string/pref_camera_id_title"
     53             camera:icons="@array/camera_id_icons"
     54             camera:entries="@array/camera_id_entries"
     55             camera:largeIcons="@array/camera_id_largeicons"/>
     56     <IconListPreference
     57             camera:key="pref_video_effect_key"
     58             camera:defaultValue="@string/pref_video_effect_default"
     59             camera:title="@string/pref_video_effect_title"
     60             camera:icons="@array/video_effect_icons"
     61             camera:largeIcons="@array/video_effect_icons"
     62             camera:entries="@array/pref_video_effect_entries"
     63             camera:entryValues="@array/pref_video_effect_entryvalues" />
     64     <RecordLocationPreference
     65             camera:key="pref_camera_recordlocation_key"
     66             camera:defaultValue="@string/pref_camera_recordlocation_default"
     67             camera:title="@string/pref_camera_recordlocation_title"
     68             camera:icons="@array/camera_recordlocation_icons"
     69             camera:largeIcons="@array/camera_recordlocation_largeicons"
     70             camera:entries="@array/pref_camera_recordlocation_entries"
     71             camera:entryValues="@array/pref_camera_recordlocation_entryvalues" />
     72 </PreferenceGroup>
     73