blob: 4735d03297aa2f99a52fcbcf64a2b4edd10032ae [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 Miyakawaf6828022011-07-25 12:20:28 -070022 android:paddingBottom="?android:attr/actionBarSize">
23
Debashish Chatterjee2f497692011-07-19 17:23:15 +010024 <FrameLayout
25 android:id="@+id/voicemail_status"
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
28 android:layout_alignParentLeft="true"
29 android:layout_alignParentBottom="true"
30 android:visibility="gone">
31 <include layout="@layout/call_log_voicemail_status"
32 />
33 </FrameLayout>
Debashish Chatterjee9e003892011-07-15 18:40:11 +010034 <FrameLayout
Daniel Lehmannbcd12272011-05-06 20:31:03 -070035 android:layout_width="match_parent"
Debashish Chatterjee9e003892011-07-15 18:40:11 +010036 android:layout_height="wrap_content"
37 >
38 <ListView android:id="@android:id/list"
39 android:layout_width="match_parent"
40 android:layout_height="match_parent"
Frank Sposaro3d5c5de2011-08-18 11:42:05 -070041 android:fadingEdge="none"
Debashish Chatterjee9e003892011-07-15 18:40:11 +010042 android:scrollbarStyle="outsideOverlay"
Flavio Lerdafca72fa2011-08-28 19:08:01 +010043 android:divider="@null"
Debashish Chatterjee9e003892011-07-15 18:40:11 +010044 />
Debashish Chatterjee9e003892011-07-15 18:40:11 +010045 <TextView android:id="@android:id/empty"
46 android:layout_width="match_parent"
47 android:layout_height="match_parent"
48 android:text="@string/recentCalls_empty"
49 android:gravity="center"
Flavio Lerdac0d25d52011-09-12 23:07:28 +010050 android:layout_marginTop="@dimen/empty_message_top_margin"
51 android:textColor="?android:attr/textColorSecondary"
Debashish Chatterjee9e003892011-07-15 18:40:11 +010052 android:textAppearance="?android:attr/textAppearanceLarge"
53 />
54 </FrameLayout>
55</LinearLayout>