blob: ac0fbae8adf4a67b2533d8ea36c93329cf466055 [file] [log] [blame]
Erik6b858fc2010-09-15 18:59:04 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:id="@+id/calendars"
19 android:orientation="vertical"
20 android:layout_width="match_parent"
21 android:layout_height="match_parent"
22 android:fillViewport="true">
23
24 <TextView android:id="@+id/account_status"
Michael Chan88d9c002010-11-01 15:53:31 -070025 android:layout_width="wrap_content"
Erik6b858fc2010-09-15 18:59:04 -070026 android:layout_height="wrap_content"
RoboErikf8a671b2011-11-08 16:46:44 -080027 android:layout_marginLeft="16dip"
28 android:layout_marginRight="16dip"
Michael Chan88d9c002010-11-01 15:53:31 -070029 android:layout_gravity="center"
Erik6b858fc2010-09-15 18:59:04 -070030 style="?android:attr/textAppearanceMedium" />
31
32 <Button android:id="@+id/sync_settings"
Michael Chan88d9c002010-11-01 15:53:31 -070033 android:layout_width="wrap_content"
Erik6b858fc2010-09-15 18:59:04 -070034 android:layout_height="wrap_content"
Michael Chan88d9c002010-11-01 15:53:31 -070035 android:layout_gravity="center"
Erik6b858fc2010-09-15 18:59:04 -070036 android:text="@android:string/ok" />
37
38 <include android:id="@+id/calendar_list" layout="@android:layout/list_content"/>
39
40</LinearLayout>