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.
54 lines
1.8 KiB
XML
54 lines
1.8 KiB
XML
15 years ago
|
<?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:focusable="true"
|
||
15 years ago
|
android:paddingTop="8px"
|
||
15 years ago
|
android:paddingLeft="4dip"
|
||
15 years ago
|
android:paddingRight="6dip"
|
||
|
android:paddingBottom="2px"
|
||
15 years ago
|
android:minHeight="56px"
|
||
15 years ago
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<!-- completion check-box -->
|
||
|
<CheckBox android:id="@+id/completeBox"
|
||
15 years ago
|
android:layout_width="52px"
|
||
15 years ago
|
android:layout_height="fill_parent"
|
||
15 years ago
|
android:layout_weight="1"
|
||
15 years ago
|
android:paddingLeft="10px"
|
||
15 years ago
|
android:button="@drawable/btn_check"/>
|
||
15 years ago
|
|
||
|
<LinearLayout android:id="@+id/details"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="100"
|
||
15 years ago
|
android:paddingLeft="12px"
|
||
15 years ago
|
android:paddingRight="2px"
|
||
15 years ago
|
android:orientation="vertical">
|
||
|
|
||
|
<!-- task name -->
|
||
|
<TextView android:id="@+id/title"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
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"
|
||
15 years ago
|
android:layout_width="2px"
|
||
15 years ago
|
android:layout_height="fill_parent"/>
|
||
|
|
||
|
</LinearLayout>
|