blob: 4858717af40eeb60b5e3ea74ff90031bba5d2c10 [file] [log] [blame]
Chiao Cheng94b10b52012-08-17 16:59:12 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
21 android:minHeight="@dimen/call_log_list_item_height"
22 android:paddingTop="@dimen/call_log_inner_margin"
23 android:paddingBottom="@dimen/call_log_inner_margin"
Fabrice Di Meglioc341db02013-04-03 21:11:37 -070024 android:paddingStart="@dimen/call_log_indent_margin"
25 android:paddingEnd="@dimen/call_log_outer_margin"
Chiao Cheng94b10b52012-08-17 16:59:12 -070026 android:orientation="vertical"
27>
28 <LinearLayout
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"
31 android:orientation="horizontal"
32 >
33 <view
34 class="com.android.dialer.calllog.CallTypeIconsView"
35 android:id="@+id/call_type_icon"
36 android:layout_width="wrap_content"
37 android:layout_height="wrap_content"
38 android:layout_gravity="center_vertical"
39 />
40 <TextView
41 android:id="@+id/call_type_text"
42 android:layout_width="wrap_content"
43 android:layout_height="wrap_content"
Fabrice Di Meglioc341db02013-04-03 21:11:37 -070044 android:layout_marginStart="@dimen/call_log_icon_margin"
Chiao Cheng94b10b52012-08-17 16:59:12 -070045 android:textAppearance="?android:attr/textAppearanceSmall"
46 android:textColor="@color/secondary_text_color"
47 />
48 </LinearLayout>
49 <TextView
50 android:id="@+id/date"
51 android:layout_width="wrap_content"
52 android:layout_height="wrap_content"
53 android:textAppearance="?android:attr/textAppearanceSmall"
54 android:textColor="@color/secondary_text_color"
55 />
56 <TextView
57 android:id="@+id/duration"
58 android:layout_width="wrap_content"
59 android:layout_height="wrap_content"
60 android:textAppearance="?android:attr/textAppearanceSmall"
61 android:textColor="@color/secondary_text_color"
62 />
63</LinearLayout>