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.
124 lines
4.4 KiB
XML
124 lines
4.4 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="fill_parent"
|
|
android:background="@drawable/background_gradient"
|
|
android:orientation="vertical">
|
|
|
|
<!-- Header -->
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal"
|
|
android:background="@drawable/edit_header">
|
|
|
|
<!-- Back Button -->
|
|
<ImageView android:id="@+id/back"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="@drawable/tango_previous"
|
|
android:paddingTop="8dip"
|
|
android:paddingLeft="5dip"/>
|
|
|
|
<!-- List Label -->
|
|
<TextView android:id="@+id/listLabel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="100"
|
|
android:singleLine="true"
|
|
android:paddingTop="6dip"
|
|
android:paddingRight="50dip"
|
|
style="@style/TextAppearance.TLA_Header"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Body -->
|
|
<FrameLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="100">
|
|
|
|
<!-- No Tasks label -->
|
|
<TextView android:id="@android:id/empty"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:visibility="gone"
|
|
android:text="@string/TLA_no_items"
|
|
style="@style/TextAppearance.TLA_NoItems"/>
|
|
|
|
<!-- Task List -->
|
|
<ListView android:id="@android:id/list"
|
|
android:scrollbars="vertical"
|
|
android:cacheColorHint="#00000000"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"/>
|
|
|
|
</FrameLayout>
|
|
|
|
<!-- Reminder -->
|
|
<RelativeLayout android:id="@+id/reminderContainer"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
android:layout_weight="1">
|
|
|
|
<TextView android:id="@+id/reminderLabel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
style="@style/TextAppearance.TLA_Reminder"
|
|
android:background="@drawable/reminder_popup"/>
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingRight="15px"
|
|
android:layout_below="@id/reminderLabel"
|
|
android:layout_alignParentRight="true"
|
|
android:src="@drawable/icon_blank" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<!-- Footer -->
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal">
|
|
|
|
<!-- Quick Add Button -->
|
|
<ImageButton android:id="@+id/quickAddButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:visibility="gone"
|
|
android:src="@drawable/tango_add"
|
|
android:scaleType="fitCenter"/>
|
|
|
|
<!-- Quick Add Task -->
|
|
<EditText android:id="@+id/quickAddText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="100"
|
|
android:hint="@string/TLA_quick_add_hint"
|
|
android:singleLine="true"
|
|
android:autoText="true"
|
|
android:capitalize="sentences"/>
|
|
|
|
<!-- Extended Add Button -->
|
|
<ImageButton android:id="@+id/extendedAddButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:src="@drawable/tango_edit"
|
|
android:scaleType="fitCenter"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|