diff options
Diffstat (limited to 'res/layout')
| -rw-r--r-- | res/layout/tasker_settings.xml | 32 |
1 files changed, 21 insertions, 11 deletions
diff --git a/res/layout/tasker_settings.xml b/res/layout/tasker_settings.xml index b96642aa..b50f3c3c 100644 --- a/res/layout/tasker_settings.xml +++ b/res/layout/tasker_settings.xml @@ -4,17 +4,6 @@ android:layout_height="fill_parent"
android:padding="5dp" >
- <CheckBox
- android:id="@+id/download_articles"
- android:checked="true"
- android:enabled="false"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignParentRight="true"
- android:layout_alignParentTop="true"
- android:text="@string/download_articles_and_go_offline" />
-
<Button
android:id="@+id/close_button"
android:layout_width="wrap_content"
@@ -23,4 +12,25 @@ android:layout_centerHorizontal="true"
android:text="@string/tasker_save_and_close" />
+ <RadioGroup
+ android:id="@+id/taskerActions"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentRight="true"
+ android:layout_alignParentTop="true" >
+
+ <RadioButton
+ android:id="@+id/actionDownload"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:checked="true"
+ android:text="@string/download_articles_and_go_offline" />
+
+ <RadioButton
+ android:id="@+id/actionUpload"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/synchronize_read_articles_and_go_online" />
+ </RadioGroup>
+
</RelativeLayout>
\ No newline at end of file |