blob: 7498f5a6576504aeb935b754d892538e1f5fc0bf [file] [log] [blame]
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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
Flavio Lerda9cafe472011-06-08 14:06:13 +01007
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08008 http://www.apache.org/licenses/LICENSE-2.0
Flavio Lerda9cafe472011-06-08 14:06:13 +01009
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080010 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
Flavio Lerda9cafe472011-06-08 14:06:13 +010017<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
Daniel Lehmann2e95ad02011-07-28 18:30:01 -070018 xmlns:ex="http://schemas.android.com/apk/res/com.android.contacts"
Flavio Lerda4e63bab2011-08-10 18:26:46 +010019 android:id="@+id/call_detail"
Romain Guy6304c0b2010-01-08 15:06:49 -080020 android:layout_width="match_parent"
21 android:layout_height="match_parent"
Flavio Lerda4e63bab2011-08-10 18:26:46 +010022 android:visibility="gone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080023>
Flavio Lerdad1333a22011-08-11 16:19:47 +010024 <!--
25 The list view is under everything.
26 It contains a first header element which is hidden under the controls UI.
27 When scrolling, the controls move up until the name bar hits the top.
28 -->
Flavio Lerda9a208cc2011-07-12 21:05:47 +010029 <ListView
Flavio Lerda5592b752011-07-12 18:47:36 +010030 android:id="@+id/history"
Romain Guy6304c0b2010-01-08 15:06:49 -080031 android:layout_width="match_parent"
Flavio Lerda9cafe472011-06-08 14:06:13 +010032 android:layout_height="wrap_content"
33 android:layout_alignParentLeft="true"
Flavio Lerdad1333a22011-08-11 16:19:47 +010034 android:layout_alignParentTop="true"
Flavio Lerda8ebfa3d2011-08-10 14:35:22 +010035 android:background="@android:color/black"
Flavio Lerda9a208cc2011-07-12 21:05:47 +010036 />
Flavio Lerdad1333a22011-08-11 16:19:47 +010037
38 <!-- All the controls which are part of the pinned header are in this layout. -->
39 <RelativeLayout
40 android:id="@+id/controls"
41 android:layout_width="match_parent"
42 android:layout_height="match_parent"
43 android:layout_alignParentLeft="true"
44 android:layout_alignParentTop="true"
45 >
46 <FrameLayout
47 android:id="@+id/voicemail_status"
48 android:layout_width="match_parent"
49 android:layout_height="wrap_content"
50 android:layout_alignParentLeft="true"
51 android:layout_alignParentTop="true"
52 android:visibility="gone"
53 >
54 <include layout="@layout/call_log_voicemail_status"/>
55 </FrameLayout>
56
57 <view
58 class="com.android.contacts.widget.ProportionalLayout"
59 android:id="@+id/contact_background_sizer"
60 android:layout_width="match_parent"
61 android:layout_height="wrap_content"
62 android:layout_alignParentLeft="true"
63 android:layout_below="@id/voicemail_status"
64 ex:ratio="0.5"
65 ex:direction="widthToHeight"
66 >
67 <ImageView
68 android:id="@+id/contact_background"
69 android:layout_width="match_parent"
70 android:layout_height="0dip"
71 android:adjustViewBounds="true"
72 android:scaleType="centerCrop"
73 />
74 </view>
75 <LinearLayout
76 android:id="@+id/blue_separator"
77 android:layout_width="match_parent"
78 android:layout_height="1dip"
79 android:background="@android:color/holo_blue_light"
80 android:layout_below="@+id/contact_background_sizer"
81 />
Flavio Lerdad1333a22011-08-11 16:19:47 +010082 <View
83 android:id="@+id/photo_text_bar"
84 android:layout_width="match_parent"
85 android:layout_height="42dip"
86 android:background="#7F000000"
87 android:layout_alignParentLeft="true"
88 android:layout_alignBottom="@id/contact_background_sizer"
89 />
90 <ImageView
91 android:id="@+id/main_action"
92 android:layout_width="wrap_content"
93 android:layout_height="0dip"
94 android:scaleType="center"
95 android:layout_alignRight="@id/photo_text_bar"
96 android:layout_alignBottom="@id/photo_text_bar"
97 android:layout_alignTop="@id/photo_text_bar"
98 android:layout_marginRight="@dimen/call_log_outer_margin"
99 />
100 <TextView
101 android:id="@+id/header_text"
102 android:layout_width="wrap_content"
103 android:layout_height="0dip"
104 android:layout_alignLeft="@id/photo_text_bar"
105 android:layout_toLeftOf="@id/main_action"
106 android:layout_alignTop="@id/photo_text_bar"
107 android:layout_alignBottom="@id/photo_text_bar"
108 android:layout_marginRight="@dimen/call_log_inner_margin"
109 android:layout_marginLeft="@dimen/call_detail_contact_name_margin"
110 android:gravity="center_vertical"
111 android:textColor="?attr/call_log_primary_text_color"
Flavio Lerda35be86e2011-08-12 14:13:22 +0100112 android:textAppearance="?android:attr/textAppearanceMedium"
Flavio Lerdad1333a22011-08-11 16:19:47 +0100113 android:singleLine="true"
114 />
115 <ImageButton
116 android:id="@+id/main_action_push_layer"
117 android:layout_width="match_parent"
118 android:layout_height="match_parent"
119 android:layout_alignLeft="@id/contact_background_sizer"
120 android:layout_alignTop="@id/contact_background_sizer"
121 android:layout_alignRight="@id/contact_background_sizer"
122 android:layout_alignBottom="@id/contact_background_sizer"
123 android:background="?android:attr/selectableItemBackground"
124 />
Flavio Lerdab5a3f5c2011-09-21 19:27:33 +0100125 <LinearLayout
126 android:id="@+id/voicemail_container"
127 android:layout_width="match_parent"
128 android:layout_height="wrap_content"
129 android:paddingBottom="@dimen/call_detail_button_spacing"
130 android:layout_below="@id/blue_separator"
131 android:background="@android:color/black"
132 >
133 <!-- The voicemail fragment will be put here. -->
134 </LinearLayout>
Flavio Lerdad1333a22011-08-11 16:19:47 +0100135 <FrameLayout android:id="@+id/call_and_sms_container"
136 android:layout_width="match_parent"
137 android:layout_height="wrap_content"
Flavio Lerdadd18a802011-09-05 14:39:13 +0100138 android:layout_marginBottom="@dimen/call_detail_button_spacing"
Flavio Lerdad1333a22011-08-11 16:19:47 +0100139 android:layout_below="@id/voicemail_container"
140 android:background="@android:color/black"
141 >
142 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
143 android:id="@+id/call_and_sms"
144 android:layout_width="match_parent"
145 android:layout_height="@dimen/call_log_list_item_height"
146 android:orientation="horizontal"
Flavio Lerdad1333a22011-08-11 16:19:47 +0100147 android:gravity="center_vertical"
148 android:background="@drawable/dialpad_background"
149 >
150
151 <LinearLayout android:id="@+id/call_and_sms_main_action"
152 android:layout_width="0dip"
153 android:layout_height="match_parent"
154 android:layout_weight="1"
155 android:paddingLeft="@dimen/call_log_indent_margin"
156 android:orientation="vertical"
157 android:gravity="center_vertical"
158 android:focusable="true"
Daisuke Miyakawa2c6aa792011-09-13 15:34:53 -0700159 android:background="?android:attr/selectableItemBackground"
Flavio Lerdad1333a22011-08-11 16:19:47 +0100160 >
161
Flavio Lerda35be86e2011-08-12 14:13:22 +0100162 <TextView android:id="@+id/call_and_sms_text"
Flavio Lerdad1333a22011-08-11 16:19:47 +0100163 android:layout_width="wrap_content"
164 android:layout_height="wrap_content"
Flavio Lerda88be53d2011-11-17 00:31:34 +0000165 android:paddingRight="@dimen/call_log_icon_margin"
Flavio Lerda35be86e2011-08-12 14:13:22 +0100166 android:textAppearance="?android:attr/textAppearanceMedium"
Flavio Lerdafca72fa2011-08-28 19:08:01 +0100167 android:textColor="?attr/call_log_primary_text_color"
Flavio Lerda88be53d2011-11-17 00:31:34 +0000168 android:singleLine="true"
169 android:ellipsize="end"
Flavio Lerdad1333a22011-08-11 16:19:47 +0100170 />
171
Flavio Lerda35be86e2011-08-12 14:13:22 +0100172 <TextView android:id="@+id/call_and_sms_label"
Flavio Lerdad1333a22011-08-11 16:19:47 +0100173 android:layout_width="wrap_content"
174 android:layout_height="wrap_content"
Flavio Lerda88be53d2011-11-17 00:31:34 +0000175 android:paddingRight="@dimen/call_log_icon_margin"
Flavio Lerda35be86e2011-08-12 14:13:22 +0100176 android:textAppearance="?android:attr/textAppearanceSmall"
Flavio Lerdafca72fa2011-08-28 19:08:01 +0100177 android:textColor="?attr/call_log_primary_text_color"
Flavio Lerda35be86e2011-08-12 14:13:22 +0100178 android:textAllCaps="true"
Flavio Lerda88be53d2011-11-17 00:31:34 +0000179 android:singleLine="true"
180 android:ellipsize="end"
Flavio Lerda35be86e2011-08-12 14:13:22 +0100181 />
Flavio Lerdad1333a22011-08-11 16:19:47 +0100182
183 </LinearLayout>
184
185 <View android:id="@+id/call_and_sms_divider"
186 android:layout_width="1px"
187 android:layout_height="32dip"
188 android:background="@drawable/ic_divider_dashed_holo_dark"
189 android:layout_gravity="center_vertical"
190 />
191
192 <ImageView android:id="@+id/call_and_sms_icon"
193 android:layout_width="@color/call_log_voicemail_highlight_color"
194 android:layout_height="match_parent"
195 android:paddingLeft="@dimen/call_log_inner_margin"
196 android:paddingRight="@dimen/call_log_outer_margin"
197 android:gravity="center"
198 android:scaleType="centerInside"
199 android:focusable="true"
Daisuke Miyakawa2c6aa792011-09-13 15:34:53 -0700200 android:background="?android:attr/selectableItemBackground"
Flavio Lerdad1333a22011-08-11 16:19:47 +0100201 />
202 </LinearLayout>
203 </FrameLayout>
204 </RelativeLayout>
Flavio Lerdafd1b98b2011-08-24 19:55:15 +0100205
206 <!--
207 Used to hide the UI when playing a voicemail and the proximity sensor
208 is detecting something near the screen.
209 -->
210 <View
211 android:id="@+id/blank"
212 android:layout_width="match_parent"
213 android:layout_height="match_parent"
214 android:layout_alignParentLeft="true"
215 android:layout_alignParentTop="true"
216 android:background="#000000"
217 android:visibility="gone"
Hugo Hudsonb2ef6d82011-09-09 16:11:59 +0100218 android:clickable="true"
Flavio Lerdafd1b98b2011-08-24 19:55:15 +0100219 />
Flavio Lerda9cafe472011-06-08 14:06:13 +0100220</RelativeLayout>