summaryrefslogtreecommitdiffstats
path: root/res/layout/call_log_list_item.xml
blob: 0f64e8b0a674e9e37a30b2e5dfd441e8a77ec444 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2007 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.
-->

<view xmlns:android="http://schemas.android.com/apk/res/android"
    class="com.android.dialer.calllog.CallLogListItemView"
    android:id="@+id/call_log_list_item"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@color/background_dialer_list_items" >

    <!-- Day group heading. Used to show a "today", "yesterday", "last week" or "other" heading
         above a group of call log entries. -->
    <TextView
        android:id="@+id/call_log_day_group_label"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="@dimen/call_log_start_margin"
        android:layout_marginEnd="@dimen/call_log_outer_margin"
        android:fontFamily="sans-serif-medium"
        android:textColor="?attr/call_log_secondary_text_color"
        android:textSize="@dimen/call_log_secondary_text_size"
        android:paddingTop="@dimen/call_log_day_group_padding_top"
        android:paddingBottom="@dimen/call_log_day_group_padding_bottom" />

    <!-- Linear layout to separate the primary area containing the contact badge and caller
         information and the secondary action (call details / play voicemail). -->
    <LinearLayout
        android:id="@+id/call_log_row"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:baselineAligned="false"
        android:orientation="vertical"
        android:gravity="center_vertical" >

        <!-- Primary area containing the contact badge and caller information -->
        <LinearLayout
            android:id="@+id/primary_action_view"
            android:background="@drawable/call_log_background"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingStart="@dimen/call_log_start_margin"
            android:paddingEnd="@dimen/call_log_outer_margin"
            android:paddingTop="@dimen/call_log_outer_margin"
            android:paddingBottom="@dimen/call_log_outer_margin"
            android:orientation="horizontal"
            android:gravity="center_vertical"
            android:focusable="true"
            android:nextFocusRight="@+id/call_back_action"
            android:nextFocusLeft="@+id/quick_contact_photo" >
            <QuickContactBadge
                android:id="@+id/quick_contact_photo"
                android:layout_width="@dimen/contact_photo_size"
                android:layout_height="@dimen/contact_photo_size"
                android:nextFocusRight="@id/primary_action_view"
                android:layout_alignParentStart="true"
                android:focusable="true"
                />
            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:orientation="vertical"
                android:gravity="center_vertical"
                android:layout_marginStart="@dimen/call_log_start_margin"
                >
                <TextView
                    android:id="@+id/name"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginBottom="@dimen/call_log_name_margin_bottom"
                    android:layout_marginEnd="@dimen/call_log_icon_margin"
                    android:textColor="?attr/call_log_primary_text_color"
                    android:textSize="@dimen/call_log_primary_text_size"
                    android:singleLine="true"
                    />
                <TextView
                    android:id="@+id/voicemail_transcription"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginEnd="@dimen/call_log_icon_margin"
                    android:textColor="?attr/call_log_secondary_text_color"
                    android:textSize="@dimen/call_log_secondary_text_size"
                    android:singleLine="true"
                    android:ellipsize="marquee"
                    android:visibility="gone"
                    />
                <LinearLayout
                    android:id="@+id/call_type"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal"
                    >
                    <view
                        class="com.android.dialer.calllog.CallTypeIconsView"
                        android:id="@+id/call_type_icons"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginEnd="@dimen/call_log_icon_margin"
                        android:layout_gravity="center_vertical"
                        />
                    <ImageView
                        android:id="@+id/call_account_icon"
                        android:layout_width="@dimen/call_provider_small_icon_size"
                        android:layout_height="@dimen/call_provider_small_icon_size"
                        android:layout_marginEnd="@dimen/call_log_icon_margin"
                        android:layout_gravity="center_vertical"
                        android:scaleType="centerInside"
                        />
                    <TextView
                        android:id="@+id/call_location_and_date"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_marginEnd="@dimen/call_log_icon_margin"
                        android:layout_gravity="center_vertical"
                        android:textColor="?attr/call_log_secondary_text_color"
                        android:textSize="@dimen/call_log_secondary_text_size"
                        android:singleLine="true"
                        />
                </LinearLayout>
            </LinearLayout>
        </LinearLayout>

        <!-- Viewstub with additional expandable actions for a call log entry -->
        <ViewStub android:id="@+id/call_log_entry_actions_stub"
                  android:inflatedId="@+id/call_log_entry_actions"
                  android:layout="@layout/call_log_list_item_actions"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"/>
    </LinearLayout>
    <!-- Displays the extra link section -->
    <ViewStub android:id="@+id/link_stub"
              android:layout="@layout/call_log_list_item_extra"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"/>
</view>