mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.3 KiB
XML
92 lines
3.3 KiB
XML
<?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="wrap_content"
|
|
android:layout_weight="100"
|
|
android:minHeight="40dip"
|
|
android:orientation="horizontal">
|
|
|
|
<!-- importance -->
|
|
<View android:id="@+id/importance"
|
|
android:layout_width="3dip"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginRight="5dip" />
|
|
|
|
<!-- completion check-box -->
|
|
<CheckBox android:id="@+id/completeBox"
|
|
android:layout_width="34dip"
|
|
android:layout_height="fill_parent"
|
|
android:paddingLeft="5dip"
|
|
android:button="@drawable/btn_check"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="100"
|
|
android:paddingLeft="8dip"
|
|
android:orientation="vertical">
|
|
|
|
<!-- task name -->
|
|
<TextView android:id="@+id/title"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
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"/>
|
|
|
|
<TextView android:id="@+id/details"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
style="@style/TextAppearance.TAd_ItemDetails"
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView android:id="@+id/extendedDetails"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="4dip"
|
|
style="@style/TextAppearance.TAd_ItemTitle"
|
|
android:visibility="gone" />
|
|
|
|
<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>
|