1 <?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 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 xmlns:android="http://schemas.android.com/apk/res/android" 18 xmlns:ex="http://schemas.android.com/apk/res-auto" 19 android:id="@+id/call_detail" 20 android:layout_width="match_parent" 21 android:layout_height="match_parent" 22 android:visibility="gone" 23 > 24 <!-- 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 --> 29 <ListView 30 android:id="@+id/history" 31 android:layout_width="match_parent" 32 android:layout_height="wrap_content" 33 android:layout_alignParentStart="true" 34 android:layout_alignParentTop="true" 35 /> 36 37 <!-- All the controls which are part of the pinned header are in this layout. --> 38 <RelativeLayout 39 android:id="@+id/controls" 40 android:layout_width="match_parent" 41 android:layout_height="match_parent" 42 android:layout_alignParentStart="true" 43 android:layout_alignParentTop="true" 44 > 45 <FrameLayout 46 android:id="@+id/voicemail_status" 47 android:layout_width="match_parent" 48 android:layout_height="wrap_content" 49 android:layout_alignParentStart="true" 50 android:layout_alignParentTop="true" 51 android:visibility="gone" 52 > 53 <include layout="@layout/call_log_voicemail_status"/> 54 </FrameLayout> 55 56 <view 57 class="com.android.contacts.common.widget.ProportionalLayout" 58 android:id="@+id/contact_background_sizer" 59 android:layout_width="match_parent" 60 android:layout_height="wrap_content" 61 android:layout_alignParentStart="true" 62 android:layout_below="@id/voicemail_status" 63 ex:ratio="0.5" 64 ex:direction="widthToHeight" 65 > 66 <ImageView 67 android:id="@+id/contact_background" 68 android:layout_width="match_parent" 69 android:layout_height="0dip" 70 android:adjustViewBounds="true" 71 android:scaleType="centerCrop" 72 /> 73 </view> 74 75 <LinearLayout 76 android:id="@+id/separator" 77 android:layout_width="match_parent" 78 android:layout_height="1dip" 79 android:background="@color/background_dialer_light" 80 android:layout_below="@+id/contact_background_sizer" 81 /> 82 <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_alignParentStart="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_alignEnd="@id/photo_text_bar" 96 android:layout_alignBottom="@id/photo_text_bar" 97 android:layout_alignTop="@id/photo_text_bar" 98 android:layout_marginEnd="@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_alignStart="@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_marginEnd="@dimen/call_log_inner_margin" 109 android:layout_marginStart="@dimen/call_detail_contact_name_margin" 110 android:gravity="center_vertical" 111 android:textColor="?attr/call_log_header_color" 112 android:textAppearance="?android:attr/textAppearanceMedium" 113 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_alignStart="@id/contact_background_sizer" 120 android:layout_alignTop="@id/contact_background_sizer" 121 android:layout_alignEnd="@id/contact_background_sizer" 122 android:layout_alignBottom="@id/contact_background_sizer" 123 android:background="?android:attr/selectableItemBackground" 124 /> 125 <LinearLayout 126 android:id="@+id/voicemail_container" 127 android:layout_width="match_parent" 128 android:layout_height="wrap_content" 129 android:layout_below="@id/separator" 130 android:paddingBottom="@dimen/call_detail_button_spacing"> 131 <!-- The voicemail fragment will be put here. --> 132 </LinearLayout> 133 <FrameLayout 134 android:id="@+id/call_and_sms" 135 android:layout_width="match_parent" 136 android:layout_height="@dimen/call_log_list_item_height" 137 android:layout_marginBottom="@dimen/call_detail_button_spacing" 138 android:layout_below="@id/voicemail_container" 139 android:gravity="center_vertical" 140 android:background="@color/background_dialer_list_items" 141 > 142 143 <LinearLayout 144 android:id="@+id/call_and_sms_main_action" 145 android:layout_width="match_parent" 146 android:layout_height="match_parent" 147 android:orientation="horizontal" 148 android:focusable="true" 149 android:background="?android:attr/selectableItemBackground" 150 > 151 152 <LinearLayout 153 android:layout_width="0dip" 154 android:layout_height="match_parent" 155 android:layout_weight="1" 156 android:paddingStart="@dimen/call_log_indent_margin" 157 android:orientation="vertical" 158 android:gravity="center_vertical" 159 > 160 161 <TextView android:id="@+id/call_and_sms_text" 162 android:layout_width="wrap_content" 163 android:layout_height="wrap_content" 164 android:paddingEnd="@dimen/call_log_icon_margin" 165 android:textAppearance="?android:attr/textAppearanceMedium" 166 android:textColor="?attr/call_log_primary_text_color" 167 android:singleLine="true" 168 android:ellipsize="end" 169 /> 170 171 <TextView android:id="@+id/call_and_sms_label" 172 android:layout_width="wrap_content" 173 android:layout_height="wrap_content" 174 android:paddingEnd="@dimen/call_log_icon_margin" 175 android:textAppearance="?android:attr/textAppearanceSmall" 176 android:textColor="?attr/call_log_primary_text_color" 177 android:textAllCaps="true" 178 android:singleLine="true" 179 android:ellipsize="end" 180 /> 181 </LinearLayout> 182 183 <View android:id="@+id/call_and_sms_divider" 184 android:layout_width="1px" 185 android:layout_height="32dip" 186 android:background="@color/background_dialer_light" 187 android:layout_gravity="center_vertical" 188 /> 189 190 <ImageView android:id="@+id/call_and_sms_icon" 191 android:layout_width="@color/call_log_voicemail_highlight_color" 192 android:layout_height="match_parent" 193 android:paddingStart="@dimen/call_log_inner_margin" 194 android:paddingEnd="@dimen/call_log_outer_margin" 195 android:gravity="center" 196 android:scaleType="centerInside" 197 android:focusable="true" 198 android:background="?android:attr/selectableItemBackground" 199 /> 200 </LinearLayout> 201 </FrameLayout> 202 </RelativeLayout> 203 <!-- 204 Used to hide the UI when playing a voicemail and the proximity sensor 205 is detecting something near the screen. 206 --> 207 <View 208 android:id="@+id/blank" 209 android:layout_width="match_parent" 210 android:layout_height="match_parent" 211 android:layout_alignParentStart="true" 212 android:layout_alignParentTop="true" 213 android:background="@android:color/black" 214 android:visibility="gone" 215 android:clickable="true" 216 /> 217 </RelativeLayout> 218