summaryrefslogtreecommitdiff
path: root/res/layout/call_detail_history_header.xml
blob: 40f943b1e9b74fba16d08451f6efbcb12cc21949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?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-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <!-- Contact photo. -->
    <view
        class="com.android.contacts.common.widget.ProportionalLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="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>