2008-10-27 21:04:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
2008-11-13 16:22:24 -05:00
|
|
|
android:layout_height="19px"
|
|
|
|
android:paddingRight="1px"
|
|
|
|
android:paddingTop="3px"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:background="@drawable/folder_message_list_child_background">
|
|
|
|
<View
|
|
|
|
android:id="@+id/chip"
|
|
|
|
android:background="@drawable/appointment_indicator_leftside_1"
|
|
|
|
android:layout_width="4px"
|
2008-11-13 16:22:24 -05:00
|
|
|
android:layout_height="20px"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
<TextView
|
2008-11-13 16:22:24 -05:00
|
|
|
android:id="@+id/subject"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textSize="10sp"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:layout_width="200px"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2008-11-13 16:22:24 -05:00
|
|
|
android:layout_toLeftOf="@+id/from"
|
|
|
|
android:paddingLeft="10px"
|
|
|
|
android:layout_marginRight="1px" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/from"
|
|
|
|
android:textSize="10sp"
|
|
|
|
android:layout_toRightOf="@+id/subject"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:singleLine="true"
|
2008-11-13 16:22:24 -05:00
|
|
|
android:layout_width="70px"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2008-11-13 16:22:24 -05:00
|
|
|
android:paddingLeft="5px"
|
|
|
|
android:paddingRight="5px"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:drawablePadding="4px"
|
2008-11-13 16:22:24 -05:00
|
|
|
/>
|
2008-10-27 21:04:44 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/date"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2008-11-13 16:22:24 -05:00
|
|
|
android:textSize="10sp"
|
|
|
|
android:singleLine="true"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
2008-11-13 16:22:24 -05:00
|
|
|
android:layout_toRightOf="@+id/from"
|
|
|
|
/>
|
2008-10-27 21:04:44 -04:00
|
|
|
</RelativeLayout>
|