blob: 8420b26dda71f5f6719d58f30b705a5363233bf6 [file] [log] [blame]
Chiao Chengc40ec392012-11-28 18:06:44 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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<!-- android:paddingTop is used instead of android:layout_marginTop. It looks
18 android:layout_marginTop is ignored when used with <fragment></fragment>, which
19 only happens in Tablet UI since we rely on ViewPager in Phone UI.
20 Instead, android:layout_marginTop inside <fragment /> is effective. -->
21
22<LinearLayout
23 xmlns:android="http://schemas.android.com/apk/res/android"
24 android:id="@+id/pinned_header_list_layout"
25 android:orientation="vertical"
26 android:layout_width="match_parent"
27 android:layout_height="match_parent"
Gary Mai3a01c8d2016-08-01 16:54:44 -070028 android:visibility="gone"
Chiao Chengc40ec392012-11-28 18:06:44 -080029 android:background="?attr/contact_browser_background" >
30
31 <!-- Shown only when an Account filter is set.
32 - paddingTop should be here to show "shade" effect correctly. -->
Brian Attwell39026b72014-09-05 14:37:47 -070033 <include layout="@layout/account_filter_header" />
Chiao Chengc40ec392012-11-28 18:06:44 -080034
35 <FrameLayout
36 android:layout_width="match_parent"
37 android:layout_height="0dip"
yaolu83b45b72016-06-29 14:44:38 -070038 android:layout_weight="1"
39 android:id="@+id/contact_list">
40
Zheng Fu093e3f92014-08-26 14:24:41 -070041 <include layout="@layout/contact_list_card"/>
Walter Jangf7d733a2016-08-12 14:23:25 -070042
43 <android.support.v4.widget.SwipeRefreshLayout
44 android:id="@+id/swipe_refresh"
Chiao Chengc40ec392012-11-28 18:06:44 -080045 android:layout_width="match_parent"
46 android:layout_height="match_parent"
Walter Jangf7d733a2016-08-12 14:23:25 -070047 android:enabled="false" >
48
49 <view
50 class="com.android.contacts.common.list.PinnedHeaderListView"
51 android:id="@android:id/list"
52 android:layout_width="match_parent"
53 android:layout_height="match_parent"
54 android:layout_marginLeft="?attr/contact_browser_list_padding_left"
55 android:layout_marginRight="?attr/contact_browser_list_padding_right"
56 android:layout_marginStart="?attr/contact_browser_list_padding_left"
57 android:layout_marginEnd="?attr/contact_browser_list_padding_right"
58 android:paddingTop="?attr/list_item_padding_top"
59 android:clipToPadding="false"
60 android:fastScrollEnabled="true"
61 android:visibility="gone"
62 android:fadingEdge="none" />
63 </android.support.v4.widget.SwipeRefreshLayout>
64
Chiao Chengc40ec392012-11-28 18:06:44 -080065 <ProgressBar
66 android:id="@+id/search_progress"
67 style="?android:attr/progressBarStyleLarge"
68 android:layout_width="wrap_content"
69 android:layout_height="wrap_content"
70 android:layout_gravity="center"
71 android:visibility="gone" />
72 </FrameLayout>
73
Chiao Chengc40ec392012-11-28 18:06:44 -080074</LinearLayout>