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.
138 lines
4.5 KiB
XML
138 lines
4.5 KiB
XML
13 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:astrid="http://schemas.android.com/apk/res/com.timsu.astrid"
|
||
|
android:id="@+id/taskEditParent"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
style="@style/Content">
|
||
|
|
||
|
<!-- buttons -->
|
||
|
<LinearLayout android:id="@+id/edit_footer"
|
||
|
android:orientation="horizontal"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="48dip"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:padding="5dip"
|
||
|
android:background="@drawable/footer_background"
|
||
|
android:baselineAligned="false">
|
||
|
<Button
|
||
|
android:id="@+id/save"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:layout_marginRight="5dip"
|
||
|
android:background="@drawable/footer_editbutton"
|
||
|
android:text="@string/DLG_save"
|
||
|
android:textStyle="bold"
|
||
|
style="@style/TextAppearance.TEA_action"
|
||
|
android:layout_weight="1" />
|
||
|
<Button
|
||
|
android:id="@+id/discard"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:layout_marginLeft="5dip"
|
||
|
android:background="@drawable/footer_editbutton"
|
||
|
android:text="@android:string/cancel"
|
||
|
style="@style/TextAppearance.TEA_action"
|
||
|
android:textColor="#000000"
|
||
|
android:layout_weight="1" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<ScrollView
|
||
|
android:id="@+id/edit_scroll"
|
||
|
android:layout_above="@id/edit_footer"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
style="@style/Content">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:orientation="vertical"
|
||
|
android:padding="10dip"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/basic_controls"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:orientation="vertical">
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/when_container"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/when_header"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="50dip"
|
||
|
android:gravity="center_vertical">
|
||
|
<ImageView
|
||
|
android:id="@+id/when_image"
|
||
|
style="@style/EditRowImage"
|
||
|
android:src="@drawable/icn_edit_when"/>
|
||
|
<TextView
|
||
|
android:id="@+id/when_label"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
style="@style/TextAppearance.GEN_EditLabel"
|
||
|
android:text="When"/>
|
||
|
<TextView
|
||
|
android:id="@+id/aux_date"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="100"
|
||
|
android:gravity="right"
|
||
|
style="@style/TextAppearance.EditRowDisplay"/>
|
||
|
<include layout="@layout/task_edit_arrow"/>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<View
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="1dip"
|
||
|
android:padding="5dip"
|
||
|
style="@style/TEA_Separator" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/more_header"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="50dip"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:gravity="center"
|
||
|
style="@style/TextAppearance.EditRowDisplay"
|
||
|
android:textStyle="bold"
|
||
|
android:text="@string/TEA_more"/>
|
||
|
<View
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="1dip"
|
||
|
android:padding="5dip"
|
||
|
style="@style/TEA_Separator" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/more_controls"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:orientation="vertical"
|
||
|
android:visibility="gone"/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
</ScrollView>
|
||
|
</RelativeLayout>
|