blob: 8eca29e221db5cc35908d892108bd2cde88b2591 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2011 Google Inc.
Licensed to 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.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackground"
android:focusable="true">
<com.android.mail.browse.MessageHeaderContactBadge
android:id="@+id/photo"
android:layout_width="@dimen/contact_image_width"
android:layout_height="@dimen/contact_image_height"
android:layout_marginTop="@dimen/message_header_icon_margin"
android:layout_marginBottom="@dimen/message_header_icon_margin"
android:background="?android:attr/selectableItemBackground"
android:scaleType="centerCrop"
android:contentDescription="@string/contact_info_string"
style="@style/MessageHeaderIconStyle" />
<!-- invisible view so that the quick contact will expand from the image -->
<QuickContactBadge
android:id="@+id/invisible_quick_contact"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="@dimen/message_header_icon_margin"
android:layout_marginBottom="@dimen/message_header_icon_margin"
android:visibility="invisible" />
<!-- draft should match photo in dimensions -->
<ImageView
android:id="@+id/draft"
android:layout_width="@dimen/contact_image_width"
android:layout_height="@dimen/contact_image_height"
android:layout_marginTop="@dimen/message_header_icon_margin"
android:layout_marginBottom="@dimen/message_header_icon_margin"
android:background="@drawable/draft_background_circle"
android:scaleType="center"
android:src="@drawable/ic_drafts_wht_24dp"
android:visibility="gone"
style="@style/MessageHeaderIconStyle" />
<include layout="@layout/conversation_message_upper_header_text" />
<include layout="@layout/conversation_message_upper_header_actions" />
</LinearLayout>