|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
** Copyright (c) 2012 Todoroo Inc
|
|
|
|
**
|
|
|
|
** See the file "LICENSE" for the full license governing this code.
|
|
|
|
-->
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="10dip"
|
|
|
|
android:paddingRight="10dip"
|
|
|
|
style="@style/Content">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<!-- Sorting -->
|
|
|
|
|
|
|
|
<RadioGroup
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<RadioButton android:id="@+id/sort_drag"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/SSD_sort_drag" />
|
|
|
|
|
|
|
|
<RadioButton android:id="@+id/sort_smart"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/SSD_sort_auto" />
|
|
|
|
|
|
|
|
<RadioButton android:id="@+id/sort_due"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/SSD_sort_due" />
|
|
|
|
|
|
|
|
<RadioButton android:id="@+id/sort_importance"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/SSD_sort_importance" />
|
|
|
|
|
|
|
|
<RadioButton android:id="@+id/sort_alpha"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/SSD_sort_alpha" />
|
|
|
|
|
|
|
|
<RadioButton android:id="@+id/sort_modified"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/SSD_sort_modified" />
|
|
|
|
|
|
|
|
</RadioGroup>
|
|
|
|
|
|
|
|
<CheckBox android:id="@+id/reverse"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/SSD_sort_reverse" />
|
|
|
|
|
|
|
|
<!-- hidden task status -->
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="5dip"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:textColor="#ffffff"
|
|
|
|
android:text="@string/SSD_hidden_title"
|
|
|
|
android:background="@drawable/edit_titlebar"/>
|
|
|
|
|
|
|
|
<CheckBox android:id="@+id/hidden"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/SSD_hidden" />
|
|
|
|
|
|
|
|
<CheckBox android:id="@+id/completed"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/SSD_completed" />
|
|
|
|
|
|
|
|
<CheckBox android:id="@+id/deleted"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/SSD_deleted" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|