mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-10 19:45:05 -05:00
64 lines
2.3 KiB
XML
64 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="38dip"
|
|
android:paddingRight="1dip"
|
|
android:paddingTop="2dip"
|
|
android:background="#999999"
|
|
>
|
|
<View
|
|
android:id="@+id/chip"
|
|
android:background="@drawable/appointment_indicator_leftside_1"
|
|
android:layout_width="4dip"
|
|
android:layout_height="fill_parent"
|
|
android:layout_centerVertical="true" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/flagged"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="false"
|
|
style="?android:attr/starStyle"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_alignParentRight="true"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/subject"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="10dip"
|
|
android:layout_toLeftOf="@id/flagged"
|
|
android:layout_marginRight="1dip" />
|
|
<TextView
|
|
android:id="@+id/date"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:paddingRight="5dip"
|
|
android:paddingLeft="5dip"
|
|
android:singleLine="true"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toLeftOf="@id/flagged"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="@android:color/transparent"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/from"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:paddingLeft="12dip"
|
|
android:layout_toLeftOf="@id/date"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentBottom="true"
|
|
/>
|
|
</RelativeLayout>
|