blob: c2d4b01f9f20603faeb5c8cae3d71aeeec237b87 [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"
Mindy Pereira2a1fb352012-05-08 15:32:41 -070021 android:layout_marginLeft="7dip"
22 android:paddingLeft="4dip"
Isaac Katzenelson10b60212011-06-28 17:59:14 -070023 android:orientation="vertical">
24 <LinearLayout
25 android:layout_width="match_parent"
26 android:layout_height="48dip"
RoboErik0d865f32011-08-09 10:17:25 -070027 android:orientation="horizontal"
Peter Nge97baf32011-08-29 14:55:11 -070028 android:layout_marginRight="8dip" >
Isaac Katzenelson10b60212011-06-28 17:59:14 -070029 <TextView
30 android:id="@+id/name"
31 android:layout_height="wrap_content"
32 android:layout_width="0dip"
33 android:layout_weight="1"
Peter Nge97baf32011-08-29 14:55:11 -070034 android:textSize="16sp"
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 <ImageButton
42 android:id="@+id/contact_remove"
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
45 android:layout_gravity="center_vertical"
46 android:paddingRight="3dip"
47 android:visibility="gone"
48 android:contentDescription="@string/accessibility_remove_attendee"
49 style="@style/MinusButton" />
Michael Chan47f3f702009-07-23 16:01:07 -070050
Isaac Katzenelson10b60212011-06-28 17:59:14 -070051 <QuickContactBadge
52 android:id="@+id/badge"
53 android:layout_gravity="center_vertical"
54 android:layout_width="48dip"
55 android:layout_height="48dip"
56 android:src="@drawable/ic_contact_picture"
57 style="?android:attr/quickContactBadgeStyleWindowMedium" />
58 </LinearLayout>
59
60 <View
61 android:id="@+id/contact_separator"
62 android:background="?android:attr/listDivider"
Daisuke Miyakawabdcb9fc2010-10-18 13:10:56 -070063 android:visibility="gone"
Peter Nge97baf32011-08-29 14:55:11 -070064 android:layout_marginLeft="8dip"
65 android:layout_marginRight="8dip"
Isaac Katzenelson10b60212011-06-28 17:59:14 -070066 android:layout_height="1px"
67 android:layout_width="match_parent" />
Daisuke Miyakawabdcb9fc2010-10-18 13:10:56 -070068
69</LinearLayout>