1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-17 06:55:03 -05:00
k-9/res/layout/folder_message_list_child.xml

49 lines
1.8 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
2008-12-11 13:14:28 -05:00
android:layout_height="38px"
android:paddingRight="1px"
2008-12-11 13:14:28 -05:00
android:paddingTop="2px"
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-12-11 13:14:28 -05:00
android:layout_height="fill_parent"
android:layout_centerVertical="true" />
<TextView
android:id="@+id/subject"
android:ellipsize="end"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceSmall"
2008-12-02 19:50:35 -05:00
android:textColor="?android:attr/textColorPrimary"
2008-12-11 13:14:28 -05:00
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingLeft="10px"
android:layout_marginRight="1px" />
<TextView
android:id="@+id/from"
android:singleLine="true"
2008-12-11 13:14:28 -05:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
2008-12-02 19:50:35 -05:00
android:textColor="?android:attr/textColorSecondary"
2008-12-11 13:14:28 -05:00
android:paddingLeft="12px"
android:layout_alignParentLeft="true"
2008-12-02 19:50:35 -05:00
android:layout_alignParentBottom="true"
/>
<TextView
android:id="@+id/date"
android:ellipsize="end"
android:textAppearance="?android:attr/textAppearanceSmall"
2008-12-02 19:50:35 -05:00
android:paddingRight="5px"
android:singleLine="true"
2008-12-11 13:14:28 -05:00
android:textColor="?android:attr/textColorSecondary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
2008-12-11 13:14:28 -05:00
android:layout_alignParentBottom="true"
/>
</RelativeLayout>