blob: b35a541279b4eaaca2d9d18401669a08f90a4718 [file] [log] [blame]
Michael Chan47f3f702009-07-23 16:01:07 -07001<?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
Daisuke Miyakawabdcb9fc2010-10-18 13:10:56 -07007
Michael Chan47f3f702009-07-23 16:01:07 -07008 http://www.apache.org/licenses/LICENSE-2.0
Daisuke Miyakawabdcb9fc2010-10-18 13:10:56 -07009
Michael Chan47f3f702009-07-23 16:01:07 -070010 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
Daisuke Miyakawabdcb9fc2010-10-18 13:10:56 -070017<LinearLayout
Michael Chan47f3f702009-07-23 16:01:07 -070018 xmlns:android="http://schemas.android.com/apk/res/android"
Romain Guydf279e32010-01-08 15:06:46 -080019 android:layout_width="match_parent"
Daisuke Miyakawabdcb9fc2010-10-18 13:10:56 -070020 android:layout_height="wrap_content"
Isaac Katzenelson10b60212011-06-28 17:59:14 -070021 android:orientation="vertical">
22 <LinearLayout
23 android:layout_width="match_parent"
24 android:layout_height="48dip"
RoboErik0d865f32011-08-09 10:17:25 -070025 android:orientation="horizontal"
26 android:layout_marginRight="16dip" >
Michael Chan47f3f702009-07-23 16:01:07 -070027
Isaac Katzenelson10b60212011-06-28 17:59:14 -070028 <TextView
29 android:id="@+id/name"
30 android:layout_height="wrap_content"
31 android:layout_width="0dip"
32 android:layout_weight="1"
33 android:textSize="18sp"
RoboErik0d865f32011-08-09 10:17:25 -070034 android:layout_marginLeft="8dip"
Isaac Katzenelson10b60212011-06-28 17:59:14 -070035 android:layout_gravity="center_vertical"
36 android:gravity="center_vertical"
37 android:textAppearance="?android:attr/textAppearanceMedium"
38 android:focusable="true"
39 style="@style/TextAppearance.EditEvent_Value" />
Michael Chan47f3f702009-07-23 16:01:07 -070040
Isaac Katzenelson10b60212011-06-28 17:59:14 -070041 <ImageView
42 android:id="@+id/presence"
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
45 android:layout_gravity="center_vertical"
46 android:paddingRight="3dip"
47 android:scaleType="fitXY"
48 android:visibility="gone" />
Erikd845fbe2010-08-12 11:20:01 -070049
Isaac Katzenelson10b60212011-06-28 17:59:14 -070050 <ImageButton
51 android:id="@+id/contact_remove"
52 android:layout_width="wrap_content"
53 android:layout_height="wrap_content"
54 android:layout_gravity="center_vertical"
55 android:paddingRight="3dip"
56 android:visibility="gone"
57 android:contentDescription="@string/accessibility_remove_attendee"
58 style="@style/MinusButton" />
Michael Chan47f3f702009-07-23 16:01:07 -070059
Isaac Katzenelson10b60212011-06-28 17:59:14 -070060 <QuickContactBadge
61 android:id="@+id/badge"
62 android:layout_gravity="center_vertical"
63 android:layout_width="48dip"
64 android:layout_height="48dip"
65 android:src="@drawable/ic_contact_picture"
66 style="?android:attr/quickContactBadgeStyleWindowMedium" />
67 </LinearLayout>
68
69 <View
70 android:id="@+id/contact_separator"
71 android:background="?android:attr/listDivider"
Daisuke Miyakawabdcb9fc2010-10-18 13:10:56 -070072 android:visibility="gone"
Isaac Katzenelson10b60212011-06-28 17:59:14 -070073 android:layout_height="1px"
74 android:layout_width="match_parent" />
Daisuke Miyakawabdcb9fc2010-10-18 13:10:56 -070075
76</LinearLayout>