blob: 7b08f4ad6b11d291b50fe12fa8ad212802a60206 [file] [log] [blame]
Vikram Aggarwald7a12cd2012-02-03 09:36:20 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2011 Google Inc.
4 Licensed to The Android Open Source Project.
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18
19<com.android.mail.ui.TwoPaneLayout
20 xmlns:android="http://schemas.android.com/apk/res/android"
21 android:id="@+id/two_pane_activity"
22 android:orientation="horizontal"
23 android:splitMotionEvents="true"
24 android:layout_width="match_parent"
25 android:layout_height="match_parent" >
26
27 <FrameLayout
Vikram Aggarwale9a81032012-02-22 13:15:35 -080028 android:id="@+id/folders_pane"
29 android:layout_width="@dimen/folder_list_pane_width"
30 android:layout_height="match_parent"
31 android:background="@drawable/folder_bg_holo_light"/>
Vikram Aggarwald7a12cd2012-02-03 09:36:20 -080032
33 <RelativeLayout
34 android:layout_width="wrap_content"
35 android:layout_height="match_parent"
36 android:id="@+id/conversation_column_container">
37
38 <RelativeLayout
39 android:id="@+id/conversation_list"
40 android:layout_width="match_parent"
41 android:layout_height="match_parent">
42
43 <FrameLayout
44 android:layout_width="match_parent"
45 android:layout_height="match_parent"
46 android:id="@+id/conversation_list_pane"
47 android:layout_alignParentTop="true" />
48
49 </RelativeLayout>
50
51 </RelativeLayout>
52
53 <FrameLayout
54 android:id="@+id/conversation_pane_container"
55 android:layout_width="0dip"
56 android:layout_height="match_parent"
57 android:visibility="gone"
58 android:background="@android:color/white">
59
60 <FrameLayout
61 android:id="@+id/conversation_pane"
62 android:layout_width="match_parent"
63 android:layout_height="match_parent" />
64
65 <View
66 android:id="@+id/conversation_overlay"
67 android:background="@android:color/transparent"
68 android:layout_width="match_parent"
69 android:layout_height="match_parent"
70 android:visibility="gone" />
71
72 <TextView
73 android:id="@+id/conversation_error"
74 android:layout_width="match_parent"
75 android:layout_height="match_parent"
76 android:text="@string/no_conversations"
77 android:gravity="center"
78 android:textAppearance="?android:attr/textAppearanceLarge"
79 android:visibility="gone"
80 android:background="@android:color/white"/>
81
82 </FrameLayout>
83</com.android.mail.ui.TwoPaneLayout>
84