blob: 63c8673e4b195f8b2144727c4a4abbf7f67e38db [file] [log] [blame]
<?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.
-->
<!-- This layout is supposed to match the content of the controls in call_detail.xml -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ex="http://schemas.android.com/apk/res/com.android.contacts"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- Contact photo. -->
<view
class="com.android.contacts.widget.ProportionalLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/voicemail_status"
ex:ratio="0.5"
ex:direction="widthToHeight"
>
<!-- Proportional layout requires a view in it. -->
<View
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</view>
<!-- Separator line -->
<View
android:layout_width="match_parent"
android:layout_height="1dip"
/>
<!-- Voicemail controls -->
<!-- TODO: Make the height be based on a constant. -->
<View
android:id="@+id/header_voicemail_container"
android:layout_width="match_parent"
android:layout_height="140dip"
android:layout_marginBottom="@dimen/call_detail_button_spacing"
/>
<!-- Call and SMS -->
<View
android:id="@+id/header_call_and_sms_container"
android:layout_width="match_parent"
android:layout_height="@dimen/call_log_list_item_height"
/>
</LinearLayout>