|
|
|
<?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:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:drawable/list_selector_background"
|
|
|
|
android:paddingTop="4dip"
|
|
|
|
android:paddingBottom="4dip"
|
|
|
|
android:paddingLeft="4dip"
|
|
|
|
android:paddingRight="4dip"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/task_row"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="48dip"
|
|
|
|
android:layout_weight="100"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<!-- importance -->
|
|
|
|
<View android:id="@+id/importance"
|
|
|
|
android:layout_width="3dip"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_marginRight="5dip" />
|
|
|
|
|
|
|
|
<!-- indent -->
|
|
|
|
<View android:id="@+id/indent"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="fill_parent"/>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- grabber -->
|
|
|
|
<ImageView android:id="@+id/grabber"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:scaleType="center"
|
|
|
|
android:src="@drawable/grabber"/>
|
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/taskText"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="42dip"
|
|
|
|
android:layout_weight="100"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingLeft="5dip"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<!-- task name -->
|
|
|
|
<TextView android:id="@+id/title"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="3"
|
|
|
|
style="@style/TextAppearance.TAd_ItemTitle"
|
|
|
|
android:gravity="center_vertical"/>
|
|
|
|
|
|
|
|
<!-- due date -->
|
|
|
|
<TextView android:id="@+id/dueDate"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="4"
|
|
|
|
android:singleLine="true"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<!-- completion check-box -->
|
|
|
|
<CheckBox android:id="@+id/completeBox"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:paddingLeft="5dip"
|
|
|
|
android:button="@drawable/btn_check"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/actions"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="#4499bbcc"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:paddingTop="4dip"
|
|
|
|
android:paddingLeft="4dip"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|