blob: cc06d2151935b66dc86064feaf8eebd4d84e1965 [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"
Chiao Cheng94b10b52012-08-17 16:59:12 -070021 android:paddingTop="@dimen/call_log_inner_margin"
22 android:paddingBottom="@dimen/call_log_inner_margin"
Tyler Gunn18164c82014-06-09 10:20:57 -070023 android:paddingStart="@dimen/call_detail_horizontal_margin"
Fabrice Di Meglioc341db02013-04-03 21:11:37 -070024 android:paddingEnd="@dimen/call_log_outer_margin"
Chiao Cheng94b10b52012-08-17 16:59:12 -070025 android:orientation="vertical"
Yorke Leeaa536fd2013-07-29 11:31:04 -070026 android:background="@color/background_dialer_list_items"
Chiao Cheng94b10b52012-08-17 16:59:12 -070027>
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"
Tyler Gunn18164c82014-06-09 10:20:57 -070045 android:textColor="?attr/call_log_primary_text_color"
46 android:textSize="@dimen/call_log_primary_text_size"
Chiao Cheng94b10b52012-08-17 16:59:12 -070047 />
48 </LinearLayout>
49 <TextView
50 android:id="@+id/date"
51 android:layout_width="wrap_content"
52 android:layout_height="wrap_content"
Yorke Leeaa536fd2013-07-29 11:31:04 -070053 android:textColor="?attr/call_log_secondary_text_color"
Tyler Gunn18164c82014-06-09 10:20:57 -070054 android:textSize="@dimen/call_log_secondary_text_size"
Chiao Cheng94b10b52012-08-17 16:59:12 -070055 />
56 <TextView
57 android:id="@+id/duration"
58 android:layout_width="wrap_content"
59 android:layout_height="wrap_content"
Yorke Leeaa536fd2013-07-29 11:31:04 -070060 android:textColor="?attr/call_log_secondary_text_color"
Tyler Gunn18164c82014-06-09 10:20:57 -070061 android:textSize="@dimen/call_log_secondary_text_size"
Chiao Cheng94b10b52012-08-17 16:59:12 -070062 />
63</LinearLayout>