| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2011 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <merge |
| xmlns:android="http://schemas.android.com/apk/res/android"> |
| <RelativeLayout |
| android:id="@+id/photo_container" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:gravity="center_vertical"> |
| <ImageView |
| android:id="@+id/photo" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:scaleType="centerCrop" /> |
| <View |
| android:layout_width="match_parent" |
| android:layout_height="1dip" |
| android:layout_alignParentTop="true" |
| android:background="#4CFFFFFF" /> |
| <View |
| android:id="@+id/photo_text_bar" |
| android:layout_width="0dip" |
| android:layout_height="42dip" |
| android:layout_alignBottom="@id/photo" |
| android:layout_alignLeft="@id/photo" |
| android:layout_alignRight="@id/photo" |
| android:layout_alignStart="@id/photo" |
| android:layout_alignEnd="@id/photo" |
| android:background="#7F000000" /> |
| <ImageView |
| android:id="@+id/contact_details_image" |
| android:src="@drawable/ic_contacts_holo_dark" |
| android:contentDescription="@null" |
| android:layout_height="wrap_content" |
| android:layout_width="wrap_content" |
| android:layout_marginRight="16dip" |
| android:layout_marginEnd="16dip" |
| android:layout_marginBottom="5dip" |
| android:layout_alignBottom="@id/photo_text_bar" |
| android:layout_alignRight="@id/photo_text_bar" |
| android:layout_alignEnd="@id/photo_text_bar" /> |
| <TextView |
| android:id="@+id/name" |
| android:layout_width="wrap_content" |
| android:layout_height="42dip" |
| android:layout_alignBottom="@id/photo" |
| android:layout_alignLeft="@id/photo" |
| android:layout_alignStart="@id/photo" |
| android:layout_toLeftOf="@id/open_details_button" |
| android:layout_toStartOf="@id/open_details_button" |
| android:gravity="center_vertical" |
| android:paddingLeft="8dip" |
| android:paddingStart="8dip" |
| android:singleLine="true" |
| android:ellipsize="end" |
| android:textColor="@android:color/white" |
| android:textAppearance="?android:attr/textAppearanceMedium" /> |
| <ImageButton |
| android:id="@+id/open_details_push_layer" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" |
| android:contentDescription="@string/viewContactDesription" |
| android:background="?android:attr/selectableItemBackground" /> |
| </RelativeLayout> |
| </merge> |