blob: 5b3fff7123e50f7e7a018599a0195e230fd1f25e [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"
Yorke Leeaa536fd2013-07-29 11:31:04 -070027 android:background="@color/background_dialer_list_items"
Chiao Cheng94b10b52012-08-17 16:59:12 -070028>
29 <LinearLayout
30 android:layout_width="wrap_content"
31 android:layout_height="wrap_content"
32 android:orientation="horizontal"
33 >
34 <view
35 class="com.android.dialer.calllog.CallTypeIconsView"
36 android:id="@+id/call_type_icon"
37 android:layout_width="wrap_content"
38 android:layout_height="wrap_content"
39 android:layout_gravity="center_vertical"
40 />
41 <TextView
42 android:id="@+id/call_type_text"
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
Fabrice Di Meglioc341db02013-04-03 21:11:37 -070045 android:layout_marginStart="@dimen/call_log_icon_margin"
Chiao Cheng94b10b52012-08-17 16:59:12 -070046 android:textAppearance="?android:attr/textAppearanceSmall"
Yorke Leeaa536fd2013-07-29 11:31:04 -070047 android:textColor="?attr/call_log_secondary_text_color"
Chiao Cheng94b10b52012-08-17 16:59:12 -070048 />
49 </LinearLayout>
50 <TextView
51 android:id="@+id/date"
52 android:layout_width="wrap_content"
53 android:layout_height="wrap_content"
54 android:textAppearance="?android:attr/textAppearanceSmall"
Yorke Leeaa536fd2013-07-29 11:31:04 -070055 android:textColor="?attr/call_log_secondary_text_color"
Chiao Cheng94b10b52012-08-17 16:59:12 -070056 />
57 <TextView
58 android:id="@+id/duration"
59 android:layout_width="wrap_content"
60 android:layout_height="wrap_content"
61 android:textAppearance="?android:attr/textAppearanceSmall"
Yorke Leeaa536fd2013-07-29 11:31:04 -070062 android:textColor="?attr/call_log_secondary_text_color"
Chiao Cheng94b10b52012-08-17 16:59:12 -070063 />
64</LinearLayout>