| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2009 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" > |
| |
| <LinearLayout |
| android:id="@+id/call_detail" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:orientation="vertical" |
| android:layout_alignParentStart="true" |
| android:layout_alignParentTop="true" |
| android:background="@color/background_dialer_details_list_items" > |
| <!-- Caller information "card" --> |
| <LinearLayout |
| android:id="@+id/caller_information" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:paddingStart="@dimen/call_detail_horizontal_margin" |
| android:paddingTop="@dimen/call_detail_top_margin" |
| android:paddingBottom="@dimen/call_detail_bottom_margin" |
| android:baselineAligned="false" |
| android:orientation="horizontal" |
| android:translationZ="@dimen/call_detail_translation_z" |
| android:focusable="true" |
| android:background="@color/background_dialer_white" > |
| |
| <QuickContactBadge |
| android:id="@+id/quick_contact_photo" |
| android:layout_width="@dimen/contact_photo_size" |
| android:layout_height="@dimen/contact_photo_size" |
| android:layout_alignParentStart="true" |
| android:layout_gravity="top" |
| android:layout_marginTop="3dp" |
| android:focusable="true" |
| /> |
| |
| <LinearLayout |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:orientation="vertical" |
| android:gravity="center_vertical" |
| android:layout_marginStart="@dimen/call_detail_horizontal_margin" |
| > |
| <TextView |
| android:id="@+id/caller_name" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:textColor="?attr/call_log_primary_text_color" |
| android:textSize="@dimen/call_log_primary_text_size" |
| android:includeFontPadding="false" |
| android:layout_marginBottom="5dp" |
| android:singleLine="true" |
| /> |
| <TextView |
| android:id="@+id/caller_number" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:textColor="?attr/call_log_secondary_text_color" |
| android:textSize="@dimen/call_log_secondary_text_size" |
| android:layout_marginBottom="1dp" |
| android:singleLine="true" |
| /> |
| <TextView |
| android:id="@+id/phone_account_label" |
| android:layout_width="wrap_content" |
| android:layout_height="wrap_content" |
| android:textColor="?attr/call_log_secondary_text_color" |
| android:textSize="@dimen/call_log_secondary_text_size" |
| android:singleLine="true" |
| android:visibility="gone" |
| /> |
| </LinearLayout> |
| </LinearLayout> |
| |
| <FrameLayout |
| android:id="@+id/voicemail_status" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_alignParentStart="true" |
| android:layout_alignParentTop="true" |
| android:visibility="gone" |
| > |
| <include layout="@layout/call_log_voicemail_status"/> |
| </FrameLayout> |
| <TextView |
| android:id="@+id/voicemail_transcription" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:paddingStart="@dimen/call_detail_horizontal_margin" |
| android:paddingEnd="@dimen/call_detail_horizontal_margin" |
| android:paddingTop="@dimen/transcription_top_margin" |
| android:paddingBottom="@dimen/transcription_bottom_margin" /> |
| <LinearLayout |
| android:id="@+id/voicemail_container" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:orientation="vertical" |
| android:paddingBottom="@dimen/call_detail_button_spacing" |
| android:visibility="gone" |
| > |
| <!-- The voicemail fragment will be put here. --> |
| </LinearLayout> |
| |
| <!-- |
| The list view is under everything. |
| It contains a first header element which is hidden under the controls UI. |
| When scrolling, the controls move up until the name bar hits the top. |
| --> |
| <ListView |
| android:id="@+id/history" |
| android:layout_width="match_parent" |
| android:layout_height="fill_parent" |
| /> |
| |
| |
| </LinearLayout> |
| <!-- |
| Used to hide the UI when playing a voicemail and the proximity sensor |
| is detecting something near the screen. |
| --> |
| <View |
| android:id="@+id/blank" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:background="@android:color/black" |
| android:visibility="gone" |
| android:clickable="true" |
| android:layout_alignParentStart="true" |
| android:layout_alignParentTop="true" |
| /> |
| </RelativeLayout> |