blob: 5bde8956a53d11d91a9a80cebcdd89019e10f095 [file] [log] [blame]
Dmitri Plotnikovd8f84e02011-01-23 18:03:14 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2009 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
18<LinearLayout
19 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:layout_width="match_parent"
21 android:layout_height="match_parent"
22 android:orientation="vertical">
23
24 <TextView
25 android:id="@+id/join_contact_blurb"
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
Daisuke Miyakawa594dc442011-10-26 16:21:44 -070028 android:layout_marginLeft="@dimen/join_header_left_margin"
Daisuke Miyakawa594dc442011-10-26 16:21:44 -070029 android:layout_marginRight="@dimen/join_header_right_margin"
Fabrice Di Meglio7d3b9152013-04-04 19:49:34 -070030 android:layout_marginStart="@dimen/join_header_left_margin"
31 android:layout_marginEnd="@dimen/join_header_right_margin"
32 android:layout_marginTop="@dimen/join_header_top_margin"
Daisuke Miyakawa594dc442011-10-26 16:21:44 -070033 android:layout_marginBottom="@dimen/join_header_bottom_margin"
Daisuke Miyakawaa8729cd2011-10-12 12:27:16 -070034 android:paddingLeft="?attr/list_item_header_text_indent"
Fabrice Di Meglio7d3b9152013-04-04 19:49:34 -070035 android:paddingStart="?attr/list_item_header_text_indent"
Dmitri Plotnikovd8f84e02011-01-23 18:03:14 -080036 android:maxLines="2"
Daisuke Miyakawaa8729cd2011-10-12 12:27:16 -070037 android:textAppearance="?android:attr/textAppearanceSmall" />
Dmitri Plotnikovd8f84e02011-01-23 18:03:14 -080038
39 <FrameLayout
40 android:id="@+id/pinned_header_list_layout"
41 android:layout_width="match_parent"
Daisuke Miyakawa08c87462011-08-09 16:41:37 -070042 android:layout_height="match_parent">
Zheng Fu03003862014-08-26 14:26:58 -070043 <include layout="@layout/contact_list_card"/>
Dmitri Plotnikovd8f84e02011-01-23 18:03:14 -080044 <view
Chiao Chenga0233a02012-11-01 16:41:08 -070045 class="com.android.contacts.common.list.PinnedHeaderListView"
Dmitri Plotnikovd8f84e02011-01-23 18:03:14 -080046 android:id="@android:id/list"
47 android:layout_width="match_parent"
48 android:layout_height="match_parent"
Daisuke Miyakawa08c87462011-08-09 16:41:37 -070049 android:layout_marginLeft="?attr/contact_browser_list_padding_left"
50 android:layout_marginRight="?attr/contact_browser_list_padding_right"
Fabrice Di Meglio7d3b9152013-04-04 19:49:34 -070051 android:layout_marginStart="?attr/contact_browser_list_padding_left"
52 android:layout_marginEnd="?attr/contact_browser_list_padding_right"
Daisuke Miyakawa08c87462011-08-09 16:41:37 -070053 android:fastScrollEnabled="true"
54 android:scrollbarStyle="outsideOverlay" />
Dmitri Plotnikovd8f84e02011-01-23 18:03:14 -080055 </FrameLayout>
56</LinearLayout>