blob: 5e7061cb2dd083819b8abae6711b324356b23477 [file] [log] [blame]
Daniel Lehmannbcd12272011-05-06 20:31:03 -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
Flavio Lerda8e683e82011-09-29 09:31:17 +010017<!-- Layout parameters are set programmatically. -->
Debashish Chatterjee9e003892011-07-15 18:40:11 +010018<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Daniel Lehmannbcd12272011-05-06 20:31:03 -070019 android:layout_width="match_parent"
20 android:layout_height="match_parent"
Debashish Chatterjee9e003892011-07-15 18:40:11 +010021 android:orientation="vertical"
Daisuke Miyakawa90217062012-02-16 10:40:38 -080022 android:paddingBottom="?android:attr/actionBarSize"
Daisuke Miyakawa8801e352012-04-30 11:51:03 -070023 android:divider="?android:attr/dividerHorizontal"
24 android:showDividers="end">
Daisuke Miyakawaf6828022011-07-25 12:20:28 -070025
Debashish Chatterjee2f497692011-07-19 17:23:15 +010026 <FrameLayout
27 android:id="@+id/voicemail_status"
28 android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:layout_alignParentLeft="true"
31 android:layout_alignParentBottom="true"
32 android:visibility="gone">
33 <include layout="@layout/call_log_voicemail_status"
34 />
35 </FrameLayout>
Chiao Cheng9e0aa862012-08-03 10:23:28 -070036
37 <FrameLayout>
38 <TextView
39 android:id="@+id/filter_status"
40 android:layout_width="match_parent"
41 android:layout_height="wrap_content"
42 android:paddingLeft="@dimen/call_log_outer_margin"
43 android:paddingRight="@dimen/call_log_outer_margin"
44 android:paddingTop="@dimen/call_log_inner_margin"
45 android:paddingBottom="@dimen/call_log_inner_margin"
46 android:layout_alignParentLeft="true"
47 android:layout_alignParentBottom="true"
48 android:visibility="gone"
49 />
50 <View
51 android:id="@+id/call_log_divider"
52 android:layout_width="match_parent"
53 android:layout_height="1px"
54 android:layout_marginLeft="@dimen/call_log_outer_margin"
55 android:layout_marginRight="@dimen/call_log_outer_margin"
56 android:layout_gravity="bottom"
57 android:background="#55ffffff"
58 />
59 </FrameLayout>
Debashish Chatterjee9e003892011-07-15 18:40:11 +010060 <FrameLayout
Daniel Lehmannbcd12272011-05-06 20:31:03 -070061 android:layout_width="match_parent"
Daisuke Miyakawa8801e352012-04-30 11:51:03 -070062 android:layout_height="match_parent">
Debashish Chatterjee9e003892011-07-15 18:40:11 +010063 <ListView android:id="@android:id/list"
64 android:layout_width="match_parent"
65 android:layout_height="match_parent"
Frank Sposaro3d5c5de2011-08-18 11:42:05 -070066 android:fadingEdge="none"
Debashish Chatterjee9e003892011-07-15 18:40:11 +010067 android:scrollbarStyle="outsideOverlay"
Flavio Lerdafca72fa2011-08-28 19:08:01 +010068 android:divider="@null"
Debashish Chatterjee9e003892011-07-15 18:40:11 +010069 />
Debashish Chatterjee9e003892011-07-15 18:40:11 +010070 <TextView android:id="@android:id/empty"
71 android:layout_width="match_parent"
72 android:layout_height="match_parent"
73 android:text="@string/recentCalls_empty"
74 android:gravity="center"
Flavio Lerdac0d25d52011-09-12 23:07:28 +010075 android:layout_marginTop="@dimen/empty_message_top_margin"
76 android:textColor="?android:attr/textColorSecondary"
Debashish Chatterjee9e003892011-07-15 18:40:11 +010077 android:textAppearance="?android:attr/textAppearanceLarge"
78 />
79 </FrameLayout>
80</LinearLayout>