aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2016-01-01 13:07:26 -0800
committerScott Jackson <daneren2005@gmail.com>2016-01-01 13:07:26 -0800
commit25874234c23be2fecc49953daec823b336d73963 (patch)
tree9d5d67139a60169f31f6ae0c3add013024c157b4 /app/src/main/res/layout
parentefdb68d9ca8623f5e2c744ae63e626891861c52b (diff)
downloaddsub-25874234c23be2fecc49953daec823b336d73963.tar.gz
dsub-25874234c23be2fecc49953daec823b336d73963.tar.bz2
dsub-25874234c23be2fecc49953daec823b336d73963.zip
#141 Add buttons for internal/external dir locations instead of requiring user to manually type it
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/cache_location_buttons.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/src/main/res/layout/cache_location_buttons.xml b/app/src/main/res/layout/cache_location_buttons.xml
new file mode 100644
index 00000000..31e12642
--- /dev/null
+++ b/app/src/main/res/layout/cache_location_buttons.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center">
+
+ <Button
+ android:id="@+id/location_internal"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/settings.cache_location_internal"/>
+
+ <Button
+ android:id="@+id/location_external"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/settings.cache_location_external"/>
+</LinearLayout> \ No newline at end of file