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.
62 lines
2.2 KiB
XML
62 lines
2.2 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.
|
|
-->
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<ScrollView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="100"
|
|
android:paddingLeft="10dip"
|
|
android:paddingRight="10dip"
|
|
android:paddingTop="5dip"
|
|
android:paddingBottom="5dip">
|
|
<LinearLayout
|
|
android:id="@+id/datetime_body"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<LinearLayout
|
|
android:id="@+id/datetime_extras"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"/>
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dip"
|
|
android:orientation="horizontal"
|
|
android:layout_weight="1">
|
|
<LinearLayout
|
|
android:id="@+id/date_shortcuts"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginTop="5dip"
|
|
android:layout_marginRight="5dip"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"/>
|
|
<com.todoroo.astrid.ui.AstridTimePicker
|
|
android:id="@+id/time_picker"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginTop="5dip"
|
|
android:layout_marginLeft="5dip"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical"/>
|
|
|
|
</LinearLayout>
|
|
<com.todoroo.astrid.ui.CalendarView
|
|
android:id="@+id/calendar"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="250dip"
|
|
android:layout_weight="1" />
|
|
<View
|
|
android:id="@+id/TEA_Separator"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="1px"
|
|
style="@style/TEA_Separator" />
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
</merge> |