blob: 5e696de1c76ab7dfb7bc6729e50fef4afe70ef27 [file] [log] [blame]
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -07001<?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
The Android Open Source Project1feaa852009-02-10 15:44:05 -080017<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18 android:title="@string/date_and_time">
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070019 <CheckBoxPreference android:key="auto_time"
20 android:title="@string/date_time_auto"
21 android:summaryOn="@string/date_time_auto_summaryOn"
22 android:summaryOff="@string/date_time_auto_summaryOff"
23 />
24 <Preference android:key="date"
25 android:title="@string/date_time_set_date"
26 android:summary="03/10/2008"
27 />
28 <PreferenceScreen android:key="timezone"
29 android:title="@string/date_time_set_timezone"
30 android:summary="GMT-8:00"
31 />
32 <Preference android:key="time"
33 android:title="@string/date_time_set_time"
34 android:summary="12:00am"
35 />
36 <CheckBoxPreference android:key="24 hour"
37 android:title="@string/date_time_24hour"
The Android Open Source Projectabc48f82008-12-17 18:06:01 -080038 android:summaryOn="@string/date_time_24_hour_sample"
39 android:summaryOff="@string/date_time_12_hour_sample"/>
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070040 <ListPreference
41 android:key="date_format"
42 android:title="@string/date_time_date_format"
43 android:summary="mm/dd/yyyy"/>
44</PreferenceScreen>