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.
82 lines
2.8 KiB
XML
82 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
** Copyright (c) 2012 Todoroo Inc
|
|
**
|
|
** 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:paddingLeft="5dip"
|
|
android:paddingRight="5dip"
|
|
android:paddingBottom="5dip"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout android:id="@+id/repeatContainer"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="100">
|
|
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<Button android:id="@+id/repeatValue"
|
|
android:layout_weight="1"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<Spinner android:id="@+id/repeatInterval"
|
|
android:layout_weight="1"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:prompt="@string/repeat_interval_prompt"
|
|
android:entries="@array/repeat_interval"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<com.todoroo.astrid.ui.ErrorCatchingSpinner android:id="@+id/repeatType"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:entries="@array/repeat_type"/>
|
|
|
|
<LinearLayout android:id="@+id/repeatDayOfWeekContainer"
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"/>
|
|
|
|
<Button android:id="@+id/repeatUntil"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginTop="15dip"
|
|
android:layout_marginBottom="-15dip">
|
|
<include layout="@layout/control_dialog_ok"
|
|
android:layout_marginRight="3dip"/>
|
|
<Button xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/edit_dont_repeat"
|
|
android:text="@string/repeat_dont"
|
|
android:layout_width="150dip"
|
|
android:layout_height="45dip"
|
|
android:layout_marginTop="10dip"
|
|
android:layout_marginBottom="5dip"
|
|
android:layout_weight="1"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginLeft="3dip"
|
|
android:background="@drawable/footer_editbutton"
|
|
android:textStyle="bold"
|
|
android:layout_alignParentBottom="true" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|