1<?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<RelativeLayout
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    android:layout_width="match_parent"
20    android:layout_height="match_parent"
21    android:orientation="vertical"
22    android:background="@null">
23
24    <TextView
25        android:id="@+id/home_time"
26        android:layout_width="match_parent"
27        android:layout_height="16dip"
28        android:gravity="center_vertical|right"
29        android:paddingRight="8dip"
30        android:textSize="12sp"
31        android:background="@color/calendar_date_banner_background"
32        android:visibility="gone" />
33
34    <LinearLayout
35        android:layout_below="@id/home_time"
36        android:orientation="horizontal"
37        android:layout_height="match_parent"
38        android:layout_width="match_parent">
39        <FrameLayout
40            android:id="@+id/main_pane"
41            android:layout_weight="6"
42            android:layout_height="match_parent"
43            android:layout_width="0dip" />
44
45        <FrameLayout
46            android:id="@+id/secondary_pane"
47            android:layout_weight="4"
48            android:visibility="gone"
49            android:layout_height="match_parent"
50            android:layout_width="0dip" />
51    </LinearLayout>
52
53    <!-- The views after this are retained to prevent crashes.
54        TODO: Remove if the app can handle them not being there. -->
55    <View android:id="@+id/mini_month_container"
56        android:layout_width="0dip"
57        android:layout_height="0dip"
58        android:visibility="gone"/>
59
60    <FrameLayout
61        android:id="@+id/mini_month"
62        android:layout_width="0dip"
63        android:layout_height="0dip"
64        android:visibility="gone"/>
65
66    <FrameLayout
67        android:id="@+id/calendar_list"
68        android:layout_width="0dip"
69        android:layout_height="0dip"
70        android:visibility="gone"/>
71</RelativeLayout>
72