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.
47 lines
1.6 KiB
XML
47 lines
1.6 KiB
XML
15 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!-- See the file "LICENSE" for the full license governing this code. -->
|
||
13 years ago
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:orientation="vertical">
|
||
15 years ago
|
|
||
|
<LinearLayout android:id="@+id/repeatContainer"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<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>
|
||
|
|
||
|
<Spinner 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" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
13 years ago
|
</LinearLayout>
|
||
15 years ago
|
|