mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-01 08:05:08 -04:00
90ef6781d4
to our message listss
102 lines
3.6 KiB
XML
102 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingRight="1dip"
|
|
android:paddingTop="2dip"
|
|
android:paddingBottom="3dip"
|
|
android:gravity="center_vertical"
|
|
android:background="#ccc" >
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/chip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:minHeight="38dip"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginRight="2dip"
|
|
android:background="@android:color/transparent" >
|
|
|
|
<View
|
|
android:layout_width="6dip"
|
|
android:layout_height="fill_parent" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/selected_checkbox"
|
|
android:layout_width="24dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:button="@drawable/checkbox"
|
|
android:focusable="false"
|
|
android:visibility="gone" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="6dip" >
|
|
|
|
<TextView
|
|
android:id="@+id/subject"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="1dip"
|
|
android:layout_marginBottom="1dip"
|
|
android:gravity="center_vertical"
|
|
android:singleLine="true"
|
|
android:ellipsize="marquee"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal" >
|
|
|
|
<TextView
|
|
android:id="@+id/from"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:paddingLeft="2dip"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
<TextView
|
|
android:id="@+id/date"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right|bottom"
|
|
android:paddingRight="5dip"
|
|
android:paddingLeft="5dip"
|
|
android:singleLine="true"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<CheckBox
|
|
android:id="@+id/flagged"
|
|
android:layout_height="20dip"
|
|
android:layout_width="20dip"
|
|
android:layout_marginLeft="2dip"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_gravity="center_vertical"
|
|
android:button="@drawable/star"
|
|
android:focusable="false" />
|
|
|
|
</LinearLayout>
|