aboutsummaryrefslogtreecommitdiff
path: root/res/layout/shuffle_dialog.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-04-25 17:03:02 -0700
committerScott Jackson <daneren2005@gmail.com>2015-04-25 17:03:05 -0700
commitcfd014d38cba03ba05f571597b361ab253bff578 (patch)
tree4256723561dec7ef3ed3507382eb7020724ec570 /res/layout/shuffle_dialog.xml
parent8a332a20ec272d59fe74520825b18017a8f0cac3 (diff)
downloaddsub-cfd014d38cba03ba05f571597b361ab253bff578.tar.gz
dsub-cfd014d38cba03ba05f571597b361ab253bff578.tar.bz2
dsub-cfd014d38cba03ba05f571597b361ab253bff578.zip
Update to gradle
Diffstat (limited to 'res/layout/shuffle_dialog.xml')
-rw-r--r--res/layout/shuffle_dialog.xml80
1 files changed, 0 insertions, 80 deletions
diff --git a/res/layout/shuffle_dialog.xml b/res/layout/shuffle_dialog.xml
deleted file mode 100644
index 295f57cb..00000000
--- a/res/layout/shuffle_dialog.xml
+++ /dev/null
@@ -1,80 +0,0 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
-
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
-
- <TextView
- android:id="@+id/start_year_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="4dp"
- android:textSize="20dp"
- android:text="@string/shuffle.startYear" />
- <EditText
- android:id="@+id/start_year"
- android:inputType="number"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:layout_marginLeft="4dp"
- android:hint="@string/shuffle.startYear" />
- </LinearLayout>
-
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
-
- <TextView
- android:id="@+id/end_year_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="4dp"
- android:textSize="20dp"
- android:text="@string/shuffle.endYear" />
- <EditText
- android:id="@+id/end_year"
- android:inputType="number"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:layout_marginLeft="4dp"
- android:hint="@string/shuffle.endYear" />
- </LinearLayout>
-
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
-
- <TextView
- android:id="@+id/genre_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="4dp"
- android:textSize="20dp"
- android:text="@string/shuffle.genre" />
- <EditText
- android:id="@+id/genre"
- android:inputType="text"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:layout_marginLeft="4dp"
- android:hint="@string/shuffle.genre"/>
-
- <Button
- android:id="@+id/genre_combo"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:layout_marginLeft="4dp"
- android:text="@string/shuffle.genre"
- style="?android:attr/spinnerStyle"/>
- </LinearLayout>
-</LinearLayout>