summaryrefslogtreecommitdiff
path: root/res/layout/tasker_settings.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-10-17 16:33:30 +0400
committerAndrew Dolgov <[email protected]>2013-10-17 16:33:30 +0400
commit68f8880a615e92839ec718b204f7bcd685367b2f (patch)
treeb226e1d0fc324fd752ed3c7c826024330efe6580 /res/layout/tasker_settings.xml
parent0ebcf48603c1094faf648bcaece208639dd93323 (diff)
implement tasker action to download articles and go offline
Diffstat (limited to 'res/layout/tasker_settings.xml')
-rw-r--r--res/layout/tasker_settings.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/res/layout/tasker_settings.xml b/res/layout/tasker_settings.xml
new file mode 100644
index 00000000..b96642aa
--- /dev/null
+++ b/res/layout/tasker_settings.xml
@@ -0,0 +1,26 @@
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/main"
+ android:layout_width="fill_parent"
+ 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"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:layout_centerHorizontal="true"
+ android:text="@string/tasker_save_and_close" />
+
+</RelativeLayout> \ No newline at end of file