2010-09-23 16:19:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2010 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.
|
|
|
|
-->
|
|
|
|
|
2011-10-04 23:23:45 +00:00
|
|
|
<RelativeLayout
|
2010-09-23 16:19:44 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/widget_message"
|
|
|
|
android:layout_width="match_parent"
|
2010-12-17 17:54:20 +00:00
|
|
|
android:layout_height="64sp"
|
2011-08-25 22:25:42 +00:00
|
|
|
android:background="@drawable/message_list_unread_selector"
|
2010-12-17 17:54:20 +00:00
|
|
|
>
|
2011-01-18 17:52:43 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/color_chip"
|
|
|
|
android:layout_width="32dip"
|
2011-10-04 23:23:45 +00:00
|
|
|
android:layout_height="4dip"
|
|
|
|
android:layout_marginRight="16dip"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentRight="true"
|
2011-01-18 17:52:43 +00:00
|
|
|
android:visibility="visible"
|
|
|
|
/>
|
2010-12-17 17:54:20 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2010-09-23 16:19:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-10-04 23:23:45 +00:00
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:orientation="vertical"
|
2010-12-17 17:54:20 +00:00
|
|
|
>
|
2011-10-04 23:23:45 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2011-01-18 17:52:43 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-10-04 23:23:45 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/widget_from"
|
|
|
|
style="@style/widget_list_item"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:paddingRight="16dip"
|
|
|
|
android:singleLine="true" />
|
|
|
|
<!-- Use negative margins to align attachment icon with text -->
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/widget_invite"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="-4sp"
|
|
|
|
android:src="@drawable/ic_badge_invite_holo_light" />
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/widget_attachment"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="-4sp"
|
|
|
|
android:src="@drawable/ic_attachment_holo_light" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/widget_date"
|
|
|
|
style="@style/widget_list_item"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/widget_subject"
|
|
|
|
android:layout_width="match_parent"
|
2010-12-17 17:54:20 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-10-04 23:23:45 +00:00
|
|
|
style="@style/widget_list_item"
|
2011-01-27 01:35:55 +00:00
|
|
|
android:layout_marginTop="-4sp"
|
2011-10-04 23:23:45 +00:00
|
|
|
android:maxLines="2"/>
|
2010-12-17 17:54:20 +00:00
|
|
|
</LinearLayout>
|
2011-10-04 23:23:45 +00:00
|
|
|
</RelativeLayout>
|