|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- See the file "LICENSE" for the full license governing this code. -->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:background="@android:drawable/list_selector_background"
|
|
|
|
android:paddingLeft="4dip"
|
|
|
|
android:paddingRight="6dip"
|
|
|
|
android:paddingTop="4dip"
|
|
|
|
android:paddingBottom="4dip"
|
|
|
|
android:minHeight="48dip"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<!-- completion check-box -->
|
|
|
|
<CheckBox android:id="@+id/completeBox"
|
|
|
|
android:layout_width="34dip"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:paddingLeft="5dip"
|
|
|
|
android:button="@drawable/btn_check"/>
|
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/details"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="100"
|
|
|
|
android:paddingLeft="6dip"
|
|
|
|
android:paddingRight="2dip"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<!-- task name -->
|
|
|
|
<TextView android:id="@+id/title"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="22sp"
|
|
|
|
style="@style/TextAppearance.TAd_ItemTitle"
|
|
|
|
android:gravity="center_vertical"/>
|
|
|
|
|
|
|
|
<!-- due date -->
|
|
|
|
<TextView android:id="@+id/dueDate"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"/>
|
|
|
|
|
|
|
|
<!-- other details go here -->
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<!-- importance -->
|
|
|
|
<View android:id="@+id/importance"
|
|
|
|
android:layout_width="2dip"
|
|
|
|
android:layout_height="fill_parent"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|