blob: 7c82ea447f3c42776979ed5868d9dd84bba75ee1 [file] [log] [blame]
Isaac Katzenelsonead19c52011-07-29 18:24:53 -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
17<LinearLayout
18 xmlns:android="http://schemas.android.com/apk/res/android"
Itzhak Katzenelson30dff0f2011-08-09 21:43:17 -070019 android:paddingTop="@dimen/contact_browser_list_top_margin"
Isaac Katzenelsonead19c52011-07-29 18:24:53 -070020 android:orientation="vertical"
21 android:layout_width="match_parent"
22 android:layout_height="wrap_content" >
23
24 <LinearLayout
25 android:orientation="horizontal"
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content" >
28
29 <TextView
30 android:id="@+id/profile_title"
31 android:layout_width="wrap_content"
32 android:layout_height="wrap_content"
Isaac Katzenelsonead19c52011-07-29 18:24:53 -070033 android:singleLine="true"
34 android:text="@string/user_profile_contacts_list_header"
35 android:textStyle="bold"
36 android:ellipsize="end"
Itzhak Katzenelson30dff0f2011-08-09 21:43:17 -070037 android:gravity="left|center_vertical"
Isaac Katzenelsonead19c52011-07-29 18:24:53 -070038 android:layout_weight="1"
Itzhak Katzenelson30dff0f2011-08-09 21:43:17 -070039 android:textAppearance="?android:attr/textAppearanceSmall"
40 android:paddingLeft="@dimen/contact_browser_list_item_text_indent"
Isaac Katzenelsonead19c52011-07-29 18:24:53 -070041 android:textColor="@color/people_app_theme_color" />
42
43 <TextView
44 android:id="@+id/contacts_count"
45 android:layout_width="wrap_content"
46 android:layout_height="wrap_content"
47 android:singleLine="true"
48 android:ellipsize="end"
Itzhak Katzenelson30dff0f2011-08-09 21:43:17 -070049 android:layout_gravity="right|center_vertical"
50 android:textAppearance="?android:attr/textAppearanceSmall"
51 android:textSize="12dip"
Isaac Katzenelsonead19c52011-07-29 18:24:53 -070052 android:textColor="@color/contact_count_text_color" />
53 </LinearLayout>
54
55 <View
56 android:background="@color/people_app_theme_color"
Isaac Katzenelsonead19c52011-07-29 18:24:53 -070057 android:layout_width="match_parent"
Itzhak Katzenelson30dff0f2011-08-09 21:43:17 -070058 android:layout_height="1dip" />
Isaac Katzenelsonead19c52011-07-29 18:24:53 -070059
60</LinearLayout>