blob: 2d0b9b5673b3c3efd6234ac99fc9062f2ced4a00 [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
Debashish Chatterjee9e003892011-07-15 18:40:11 +010017<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Daniel Lehmannbcd12272011-05-06 20:31:03 -070018 android:layout_width="match_parent"
19 android:layout_height="match_parent"
Debashish Chatterjee9e003892011-07-15 18:40:11 +010020 android:orientation="vertical"
Daniel Lehmannbcd12272011-05-06 20:31:03 -070021>
Debashish Chatterjee2f497692011-07-19 17:23:15 +010022 <FrameLayout
23 android:id="@+id/voicemail_status"
24 android:layout_width="match_parent"
25 android:layout_height="wrap_content"
26 android:layout_alignParentLeft="true"
27 android:layout_alignParentBottom="true"
28 android:visibility="gone">
29 <include layout="@layout/call_log_voicemail_status"
30 />
31 </FrameLayout>
Debashish Chatterjee9e003892011-07-15 18:40:11 +010032 <FrameLayout
Daniel Lehmannbcd12272011-05-06 20:31:03 -070033 android:layout_width="match_parent"
Debashish Chatterjee9e003892011-07-15 18:40:11 +010034 android:layout_height="wrap_content"
35 >
36 <ListView android:id="@android:id/list"
37 android:layout_width="match_parent"
38 android:layout_height="match_parent"
39 android:scrollbarStyle="outsideOverlay"
40 />
Debashish Chatterjee9e003892011-07-15 18:40:11 +010041 <TextView android:id="@android:id/empty"
42 android:layout_width="match_parent"
43 android:layout_height="match_parent"
44 android:text="@string/recentCalls_empty"
45 android:gravity="center"
46 android:textAppearance="?android:attr/textAppearanceLarge"
47 />
48 </FrameLayout>
49</LinearLayout>